diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-08-29 20:40:41 +0000 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-08-29 20:40:41 +0000 |
| commit | a649019c2ee444f8daad61c5b47b18f5d834dad9 (patch) | |
| tree | a8bd15ea9cbd6d072fa0e9a4f6dc8a1b68a5e47c /src | |
| parent | 45ad2faf8f8f3bbeb882f6f98c850ee5e09a897a (diff) | |
| parent | c2216c0ddfea7f981670eff06ba1b832f1fd2f69 (diff) | |
| download | flake8-a649019c2ee444f8daad61c5b47b18f5d834dad9.tar.gz | |
Merge branch 'type-config-file-finder' into 'master'
Add typings to ConfigFileFinder constructor
See merge request pycqa/flake8!346
Diffstat (limited to 'src')
| -rw-r--r-- | src/flake8/options/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/flake8/options/config.py b/src/flake8/options/config.py index 0a43625..9f3235d 100644 --- a/src/flake8/options/config.py +++ b/src/flake8/options/config.py @@ -17,6 +17,7 @@ class ConfigFileFinder(object): """Encapsulate the logic for finding and reading config files.""" def __init__(self, program_name, args, extra_config_files): + # type: (str, List[str], List[str]) -> None """Initialize object to find config files. :param str program_name: |
