qbit_manage/.flake8
bobokun 2e03283465
bug fix: remove unregistered torrents
better handling of unregistered torrents by matching full word
2022-01-12 16:15:43 -05:00

12 lines
No EOL
500 B
INI

[flake8]
ignore =
E226, # E226 Missing whitespace around arithmetic operator
#E302, # E302 Expected 2 blank lines, found 0
E401, # E401 Multiple imports on one line
E701, # E701 Multiple statements on one line (colon)
E241, # E241 Multiple spaces after ','
E272, # E272 Multiple spaces before keyword
C901 # C901 Function is too complex
E722 # E722 Do not use bare except, specify exception instead
W503 # W503 Line break occurred before a binary operator
max-line-length = 200