diff options
| -rw-r--r-- | src/flake8/plugins/pyflakes.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py index 158d5a2..267a13a 100644 --- a/src/flake8/plugins/pyflakes.py +++ b/src/flake8/plugins/pyflakes.py @@ -47,6 +47,10 @@ class FlakesChecker(pyflakes.checker.Checker): name = 'pyflakes' version = pyflakes.__version__ + with_doctest = False + include_in_doctest = [] + exclude_from_doctest = [] + def __init__(self, tree, filename): """Initialize the PyFlakes plugin with an AST tree and filename.""" filename = utils.normalize_paths(filename)[0] |
