Skip to content

Commit

Permalink
flake8: Ignore E722
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Feb 5, 2017
1 parent ae54648 commit b9dece8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .flake8
Expand Up @@ -6,6 +6,7 @@ exclude = .*,__pycache__,resources.py
# E501: Line too long
# E402: module level import not at top of file
# E266: too many leading '#' for block comment
# E722: do not use bare except
# E731: do not assign a lambda expression, use a def
# (for pytest's __tracebackhide__)
# F401: Unused import
Expand All @@ -24,7 +25,7 @@ exclude = .*,__pycache__,resources.py
# D403: First word of the first line should be properly capitalized
# (false-positives)
ignore =
E128,E226,E265,E501,E402,E266,E731,
E128,E226,E265,E501,E402,E266,E722,E731,
F401,
N802,
P101,P102,P103,
Expand Down

0 comments on commit b9dece8

Please sign in to comment.