diff options
author | 2019-10-04 12:10:31 +0200 | |
---|---|---|
committer | 2019-10-04 12:10:31 +0200 | |
commit | 074aa9181de9bc0357d0191489b02ca0fe943763 (patch) | |
tree | 8b0c6a571a54523583c3207420031098a2188a31 | |
parent | Add link to Contributing landing page to our website's navbar (#270) (diff) | |
parent | Fix migrations exclude in flake8 (diff) |
Merge pull request #275 from python-discord/flake8-exclude-fix
Fix migrations exclude in flake8
-rw-r--r-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ max-line-length=100 docstring-convention=all import-order-style=pycharm application_import_names=pydis_site -exclude=__pycache__, venv, .venv, **/migrations +exclude=__pycache__, venv, .venv, **/migrations/** ignore= B311,W503,E226,S311,T000 # Missing Docstrings |