https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: c19f53f194d093ede82c8765e439e98c1de52cf9 authored by Antoine R. Dumont (@ardumont) on 03 June 2022, 09:35:32 UTC
Set current_version attribute to postgresql datastore
Tip revision: c19f53f
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