Skip to content

Commit 9f8052a

Browse files
committed
build: ignore two spaces before inline comment flake8 error
1 parent 41722d8 commit 9f8052a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[pycodestyle]
2-
ignore=E501,W503
2+
# E501: Line too long (80 chars)
3+
# W503: Line break occurred before a binary operator
4+
# E261: At least two spaces before inline comment
5+
ignore=E501,W503,E261
36
max-line-length = 120
47
exclude=.git,settings,migrations,license_manager/static,bower_components,license_manager/wsgi.py
58

0 commit comments

Comments
 (0)