Skip to content
Snippets Groups Projects
.flake8 263 B
Newer Older
ignore = 
    # Ignore whitespace before colon which gives false positive for list slice (black does it correct)
    E203
max-line-length = 100
per-file-ignores =
    # imported but unused and unable to detect undefined names
    __init__.py: F401, F403