diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-08-10 18:28:32 -0700 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-08-17 20:09:45 -0700 |
| commit | b66ebd7034090f96cb0806e5e2d8026b6e35d045 (patch) | |
| tree | a354bc5e4b62fd2949e16c1d404b9ccc5ec1c041 /src/flake8/plugins | |
| parent | 03cb85f556b61d408a578becab50936ba2c246e7 (diff) | |
| download | flake8-b66ebd7034090f96cb0806e5e2d8026b6e35d045.tar.gz | |
move from optparse to argparse
Diffstat (limited to 'src/flake8/plugins')
| -rw-r--r-- | src/flake8/plugins/pyflakes.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py index 018d1c9..b216b62 100644 --- a/src/flake8/plugins/pyflakes.py +++ b/src/flake8/plugins/pyflakes.py @@ -118,7 +118,6 @@ class FlakesChecker(pyflakes.checker.Checker): comma_separated_list=True, normalize_paths=True, help="Run doctests only on these files", - type="string", ) parser.add_option( "--exclude-from-doctest", @@ -128,7 +127,6 @@ class FlakesChecker(pyflakes.checker.Checker): comma_separated_list=True, normalize_paths=True, help="Skip these files when running doctests", - type="string", ) @classmethod |
