mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-09 22:34:17 +00:00
changed additional candidates to lists to become more mutable
This commit is contained in:
parent
54d81ee27d
commit
69497e3b73
3 changed files with 8 additions and 8 deletions
|
|
@ -10,8 +10,8 @@ from flake8 import utils
|
|||
from flake8.main import cli
|
||||
from flake8.options import config
|
||||
|
||||
config.ADDITIONAL_LOCATIONS = ()
|
||||
config.ADDITIONAL_CANDIDATES = ()
|
||||
config.ADDITIONAL_LOCATIONS = []
|
||||
config.ADDITIONAL_CANDIDATES = []
|
||||
|
||||
|
||||
def test_diff_option(tmpdir, capsys):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue