Skip to content

Commit

Permalink
Fixing flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvansebille committed May 1, 2024
1 parent 98a878b commit f60fe9d
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 144 deletions.
12 changes: 12 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
ignore =
# missing whitespace around arithmetic operator
E226,
# do not use bare except, specify exception instead
E722,
# line break before binary operator
W503,
# line too long (82 > 79 characters)
E501,
# ‘from module import *’ used; unable to detect undefined names
F403,
Loading

0 comments on commit f60fe9d

Please sign in to comment.