Skip to content

Commit d29415f

Browse files
update config
1 parent f955bf3 commit d29415f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ parentdir_prefix = pandas-
1515
max-line-length = 88
1616
ignore =
1717
E501, # longer line length
18-
W503, # line break before binary operator
1918
E203, # space before : (needed for how black formats slicing)
19+
E231, # space after comma (needed for how black formats getitem with final comma)
20+
W503, # line break before binary operator
21+
W504, # line break after binary operator
2022
E402, # module level import not at top of file
2123
E731, # do not assign a lambda expression, use a def
2224
C406, # Unnecessary list literal - rewrite as a dict literal.

0 commit comments

Comments
 (0)