Revision 6400cc2b95cb1afdfc54594ea2c059b69c78f6ef authored by Antoine R. Dumont (@ardumont) on 23 June 2021, 13:28:55 UTC, committed by Antoine R. Dumont (@ardumont) on 23 June 2021, 14:54:34 UTC
This will help us when adding new fields to the table.
1 parent 3762c34
Raw File
setup.cfg
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
ignore = E203,E231,W503
max-line-length = 88
back to top