swh:1:snp:5571f7976ca4ac18a2bf37a76e1d016d6295b377
Raw File
Tip revision: e5dd2840207e019e1aece7e91928324af0a7857b authored by Aaron Meyer on 24 January 2023, 00:54:00 UTC
Fix for f-strings and test compatibility with python 3.7, 3.9 and 3.10 (#482)
Tip revision: e5dd284
setup.cfg
[metadata]
description_file = README.rst
licence_file = LICENSE.txt

[flake8]
# References:
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# https://flake8.readthedocs.io/en/latest/user/error-codes.html

# Note: there cannot be spaces after comma's here
exclude = __init__.py
ignore =
    # Extra space in brackets
    E20,
    # Multiple spaces around ","
    E231,E241,
    # Comments
    E26,
    # Import formatting
    E4,
    # Ambiguous variable names
    E741
max-line-length = 90
back to top