diff options
author | 2021-10-31 16:00:43 +0000 | |
---|---|---|
committer | 2021-12-21 19:02:15 +0000 | |
commit | f11b0649bb5eaea4649c9fdfd4ec466354ef7795 (patch) | |
tree | 99708478b87add5a67b969646d8ae997611a023e | |
parent | Store what thread a message was sent in (diff) |
flake8 ignore line break before/after binary operator
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |