aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.flake88
1 files changed, 4 insertions, 4 deletions
diff --git a/.flake8 b/.flake8
index d818786..ff38c0f 100644
--- a/.flake8
+++ b/.flake8
@@ -21,13 +21,13 @@ ignore =
# E402: module level import not at top of file
E402,
# E731: do not assign a lambda expression, use a def (too many false positives)
- E731
+ E731,
# E741: ambiguous variable name 'l'
- E741
+ E741,
# E722: do not use bare except'
- E722
+ E722,
# W504: line break after binary operator
- W504
+ W504,
# A003: builtin class attribute
A003
max-line-length = 120