Skip to content

Commit f8aadf0

Browse files
committed
update stuff
1 parent fdad356 commit f8aadf0

File tree

5 files changed

+412
-413
lines changed

5 files changed

+412
-413
lines changed

.flake8

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[flake8]
2+
# E203 -> whitespace before ':' (conflicts with Black)
3+
# E231 -> Bad trailing comma (conflicts with Black)
4+
# E501 -> line too long (conflicts with Black)
5+
26
extend-ignore:
3-
E203, # whitespace before ':' (conflicts with Black)
4-
E231, # Bad trailing comma (conflicts with Black)
5-
E501, # line too long (conflicts with Black)
7+
E203,
8+
E231,
9+
E501,

0 commit comments

Comments
 (0)