Revision 98b41c854968a0fcbb68d1f65279ea2a0081fccf authored by Valentin Lorentz on 16 March 2022, 11:24:33 UTC, committed by Valentin Lorentz on 16 March 2022, 11:24:46 UTC
This was not covered by tests so far, because
swh.model.tests.swh_model_data.TEST_OBJECTS did not contain
any object with a raw_manifest.

But it will in swh-model > 5.0.0
1 parent 8b65e42
Raw File
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