diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-27 08:50:20 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-08-03 16:48:39 -0500 |
| commit | 240609edd48f12d6746ce9fba72593663e076af7 (patch) | |
| tree | dc17b94430789f647e5e89f6cc33e2720fb58f88 | |
| parent | c1d21393bf3eadca1e38592880a839d24ab6a919 (diff) | |
| download | flake8-bug/179.tar.gz | |
Set-up default attributes for FlakesCheckerbug/179
| -rw-r--r-- | src/flake8/plugins/pyflakes.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py index 158d5a2..542e5fa 100644 --- a/src/flake8/plugins/pyflakes.py +++ b/src/flake8/plugins/pyflakes.py @@ -46,6 +46,9 @@ 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.""" |
