Revision 9a9f234e0acd5dd2c5710e6ccb85409ba6221d44 authored by Antoine R. Dumont (@ardumont) on 29 January 2021, 17:50:04 UTC, committed by Antoine R. Dumont (@ardumont) on 01 February 2021, 11:06:35 UTC
This returned a Tuple[OriginVisit, OriginVisitStatus].

This was required to have the missing information "type" for visit-status. This is no
longer needed as now OriginVisitStatus holds the type information.
1 parent 626b0bf
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