mirror of
https://gitlab.com/openlp/openlp.git
synced 2024-10-31 16:54:40 +00:00
15 lines
315 B
INI
15 lines
315 B
INI
# E402 module level import not at top of file
|
|
# E722 do not use bare except, specify exception instead
|
|
# F841 local variable '<variable>' is assigned to but never used
|
|
|
|
[pep8]
|
|
exclude=resources.py,vlc.py
|
|
max-line-length = 120
|
|
ignore = E402
|
|
|
|
[flake8]
|
|
exclude=resources.py,vlc.py
|
|
max-line-length = 120
|
|
ignore = E402
|
|
|