lnbits/.flake8
2023-04-17 08:16:59 +02:00

17 lines
462 B
INI

[flake8]
max-line-length = 300
exclude = lnbits/wallets/lnd_grpc_files/, lnbits/extensions/
ignore =
# E402: module level import not at top of file
E402,
# E741 ambiguous variable name
E741,
# W503: line break before binary operator
W503,
# F821: undefined name - should be addressed in future PR
F821,
# E722 do not use bare 'except' - should be addressed in future PR
E722,
# flake8-requirements import checks
I