aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-10-31 16:00:43 +0000
committerGravatar Chris Lovering <[email protected]>2021-12-21 19:02:15 +0000
commitf11b0649bb5eaea4649c9fdfd4ec466354ef7795 (patch)
tree99708478b87add5a67b969646d8ae997611a023e
parentStore what thread a message was sent in (diff)
flake8 ignore line break before/after binary operator
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 7866344..f0154bb 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,4 +3,8 @@ max-line-length=120
application-import-names=metricity
import-order-style=pycharm
exclude=alembic
-ignore=ANN101 # self params in classes.
+ignore=
+ # self params in classes.
+ ANN101,
+ # line break before/after binary operator
+ W503, W504