https://forge.softwareheritage.org/source/swh-scheduler.git
Revision bae0498cb83bf3267c3333a774e70ff9c3832d14 authored by Antoine Lambert on 11 March 2024, 16:22:15 UTC, committed by Antoine Lambert on 11 March 2024, 16:22:15 UTC
model: Add extra_loader_arguments column to listed_origins primary key

See merge request swh/devel/swh-scheduler!374
2 parent s e3aa098 + 536428b
Raw File
Tip revision: bae0498cb83bf3267c3333a774e70ff9c3832d14 authored by Antoine Lambert on 11 March 2024, 16:22:15 UTC
Merge branch 'listed_origins_table_update_primary_key' into 'master'
Tip revision: bae0498
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