From 240609edd48f12d6746ce9fba72593663e076af7 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Wed, 27 Jul 2016 08:50:20 -0500 Subject: [PATCH] Set-up default attributes for FlakesChecker --- src/flake8/plugins/pyflakes.py | 3 +++ 1 file changed, 3 insertions(+) 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."""