Skip to content

Commit

Permalink
build: ignore two spaces before inline comment flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveagent57 committed Feb 8, 2024
1 parent 41722d8 commit 9f8052a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[pycodestyle]
ignore=E501,W503
# E501: Line too long (80 chars)
# W503: Line break occurred before a binary operator
# E261: At least two spaces before inline comment
ignore=E501,W503,E261
max-line-length = 120
exclude=.git,settings,migrations,license_manager/static,bower_components,license_manager/wsgi.py

Expand Down

0 comments on commit 9f8052a

Please sign in to comment.