Merge branch 'pyflakes_api_better' into 'master'

Call pyflakes api better

See merge request pycqa/flake8!276
This commit is contained in:
Anthony Sottile 2019-01-01 03:18:42 +00:00
commit a153244191

View file

@ -97,7 +97,7 @@ class FlakesChecker(pyflakes.checker.Checker):
with_doctest = True
super(FlakesChecker, self).__init__(
tree, filename, withDoctest=with_doctest
tree, filename=filename, withDoctest=with_doctest
)
@classmethod