summaryrefslogtreecommitdiff
path: root/src/flake8/plugins
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-08-18 22:08:13 +0000
committerAnthony Sottile <asottile@umich.edu>2019-08-18 22:08:13 +0000
commitf265b2275b2d131df7af023f0c8b4835bc3b2575 (patch)
treede83cd1ea8f8b09559ce9b44053c0b2eeec7c65e /src/flake8/plugins
parent9c18aaedb43e0e4bb1539b5d351e62a3f7ee7bb4 (diff)
parent76515bbb8e0f5679d5ad69f0b38eae059ef593ce (diff)
downloadflake8-f265b2275b2d131df7af023f0c8b4835bc3b2575.tar.gz
Merge branch 'argparse' into 'master'
move from optparse to argparse See merge request pycqa/flake8!341
Diffstat (limited to 'src/flake8/plugins')
-rw-r--r--src/flake8/plugins/pyflakes.py2
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