Skip to content

Commit b4e62a8

Browse files
committed
pycodestyle: Ignore an error
1 parent cb7e009 commit b4e62a8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/pycodestyle.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ format = pylint
55
# [E125] Continuation indent isn't different from next block
66
# [E128] Not indented for visual style
77
# [E129] visually indented line with same indent as next logical line
8+
# [E301] Blank lines between function definitions
89
# [E303] Too many blank lines
910
# [E402] module level import not at top of file
1011
# [E731] do not assign a lambda expression, use a def
1112
# [W504] line break after binary operator
1213

13-
ignore=E125,E128,E129,E303,E402,E731,W504
14+
ignore=E125,E128,E129,E301,E303,E402,E731,W504

0 commit comments

Comments
 (0)