mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-10 09:19:42 +01:00
* [CHORE] E722 bare exception fix remove all bare exceptions from codebase and change it in `.flake8`
14 lines
401 B
INI
14 lines
401 B
INI
[flake8]
|
|
max-line-length = 150
|
|
exclude = lnbits/wallets/lnd_grpc_files/, lnbits/extensions/
|
|
ignore =
|
|
# E203 whitespace before ':' black does not like it
|
|
E203
|
|
# E402: module level import not at top of file
|
|
E402,
|
|
# W503: line break before binary operator
|
|
W503,
|
|
# F821: undefined name - should be addressed in future PR
|
|
F821,
|
|
# flake8-requirements import checks
|
|
I
|