Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ force_sort_within_sections = true

[tool.autopep8]
max_line_length = 80
ignore = ["E266", "E501", "W503", "W504", "E704", "W505", "W6"]
ignore = ["E266", "E501", "W503", "W504", "E704", "W505", "W6", "E402"]
# E266 Too many leading # for block comment
# E501 Line too long (80 > 79 characters)
# W503 Line break before binary operator
# W504 Line break after binary operator
# E704 Multiple statements on one line (def)
# W505 doc line too long (80 > 79 characters)
# W505 doc line too long (80 > 79 characters)
# E402 All import statements at the top of a file