mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 10:46:54 +00:00
Builtins will not be parsed by flake8 for us
This commit is contained in:
parent
83dd81a445
commit
15d7f7679c
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class FlakesChecker(pyflakes.checker.Checker):
|
|||
def parse_options(cls, options):
|
||||
"""Parse option values from Flake8's OptionManager."""
|
||||
if options.builtins:
|
||||
cls.builtIns = cls.builtIns.union(options.builtins.split(','))
|
||||
cls.builtIns = cls.builtIns.union(options.builtins)
|
||||
cls.withDoctest = options.doctests
|
||||
|
||||
included_files = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue