https://github.com/SoftwareHeritage/swh-model
Revision 18fde5047233f1a2a53fc790062171001f3e809f authored by Valentin Lorentz on 04 January 2021, 11:46:23 UTC, committed by Valentin Lorentz on 04 January 2021, 14:48:26 UTC
1 parent 5746850
Raw File
Tip revision: 18fde5047233f1a2a53fc790062171001f3e809f authored by Valentin Lorentz on 04 January 2021, 11:46:23 UTC
Add missing slots=True for Directory.
Tip revision: 18fde50
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