We should maybe use collections.abc.Sequence[type] for hinting input types instead oflist[type]or tuple[type,...](i.e. tuples of arbitrary length).
This allows both, tuples and lists as inputs.
Quick search reveals the following functions we might need to
We should maybe use collections.abc.Sequence[type] for hinting input types instead of
list[type]
ortuple[type,...]
(i.e. tuples of arbitrary length). This allows both, tuples and lists as inputs.Quick search reveals the following functions we might need to