Minor fix for flake8 complaint about comment whitespace
[jack_mixer.git] / setup.cfg
blobcf4652e174d97e03784222e69449ab2629643bca
1 [flake8]
2 max-line-length = 99
3 exclude =
4     .git,
5     __pycache__,
6     build,
7     config,
8     data,
9     dist,
10     m4,
11     nsmclient.py,
12     ui,
13 per-file-ignores =
14     # imported but unused
15     __init__.py: F401
16     jack_mixer.py: E402