https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 8e121bbc0d0c4894cc5ce895fe64441a86d45b7e authored by Antoine R. Dumont (@ardumont) on 12 November 2020, 11:59:51 UTC
model.identifiers: Fix one space too many in error message
Tip revision: 8e121bb
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