https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 22737fb8d490f875e0a14f347fe4144de8ccd8a6 authored by Vincent SELLIER on 22 September 2023, 08:49:39 UTC
Raise a warning log when the queue stats are not found in rabbitmq
Tip revision: 22737fb
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