https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 5335244fc187b5323ddd4f5dea223f96c782f64f authored by Valentin Lorentz on 09 August 2022, 13:42:03 UTC
retry: Add constant 10s wait when retrying transient exceptions
Tip revision: 5335244
setup.cfg
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# E501: line too long, use B950 warning from flake8-bugbear instead
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
select = C,E,F,W,B950
ignore = E203,E231,E501,W503
max-line-length = 88
back to top