Updates for pep-8 compliance. Changed many files cosmetically
Added a file exclusion to tox.ini, and also excluded rule for unused named variables. excluded more things that are system or tox related. Change-Id: I022b72cbe048e3fe1f70e6017038248e6a2e9538
This commit is contained in:
8
tox.ini
8
tox.ini
@@ -14,4 +14,10 @@ commands=
|
||||
commands = flake8 {posargs}
|
||||
|
||||
[flake8]
|
||||
ignore=E302,H306,D100,D101,D102
|
||||
# NOTE(Bryan Strassner) ignoring F841 because of the airflow example pattern
|
||||
# of naming variables even if they aren't used for DAGs and Operators.
|
||||
# Doing so adds readability and context in this case.
|
||||
ignore=E302,H306,D100,D101,D102,F841
|
||||
# NOTE(Bryan Strassner) excluding 3rd party code that is brought into the
|
||||
# codebase.
|
||||
exclude=*plugins/rest_api_plugin.py,*lib/python*,*egg,.git*,*.md,.tox*
|
||||
Reference in New Issue
Block a user