summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-06-24 14:17:09 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2019-07-11 22:37:25 +0300
commit6727e5f5ad763d79548a20ec58ab30f87ba49080 (patch)
treec7958c8b66f09ca9bd68a74ce4e34fd946da0c1c
parent4b9625ac0697a205b9714b60403ae2befa7fe781 (diff)
downloadmeson-6727e5f5ad763d79548a20ec58ab30f87ba49080.tar.gz
add missing commas
-rw-r--r--.flake88
1 files changed, 4 insertions, 4 deletions
diff --git a/.flake8 b/.flake8
index d81878675..ff38c0ff1 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