Skip to content

Commit

Permalink
Fix migrations exclude in flake8
Browse files Browse the repository at this point in the history
They were not being excluded when flake8 was invoked via pre-commit.
  • Loading branch information
MarkKoz committed Oct 3, 2019
1 parent 3146f9b commit d79e533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d79e533

Please sign in to comment.