Skip to content

Commit

Permalink
adds flake8 exceptions for star imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Zulkower committed Nov 20, 2024
1 parent 3f9eed1 commit 82a5b34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ extend-ignore =
# allow blank lines between section headers and their content in docstrings
D412,
# allow composed `__all__` statements
RST902
RST902,
# allow 'from moviepy import *' in editor.py
F403, F405
per-file-ignores =
# allow imports not placed at the top of the file
# allow 'from moviepy import *' in editor.py
Expand Down

0 comments on commit 82a5b34

Please sign in to comment.