pep8: Add compliance with rule E261 run-mypy.

This commit is contained in:
Aditya Bansal 2017-06-01 03:58:10 +05:30 committed by Tim Abbott
parent 7bb669ccb4
commit feffbb963b
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ zproject/test_settings.py
# dependency (at least while it's still kind of beta).
exclude_common += ['contrib_bots/bots']
exclude_py2 = [] # type: List[str]
exclude_py2 = [] # type: List[str]
exclude_py3 = """
api/integrations/zephyr/process_ccache
@ -72,7 +72,7 @@ else:
py_version = 2
if args.all:
exclude = [] # type: List[str]
exclude = [] # type: List[str]
if py_version == 2:
exclude = exclude_common + exclude_py2
else: