2021-09-16 15:35:12 -07:00
|
|
|
"""Custom types."""
|
|
|
|
|
|
|
|
# Standard Library
|
|
|
|
import typing as _t
|
|
|
|
|
|
|
|
_S = _t.TypeVar("_S")
|
|
|
|
|
|
|
|
Series = _t.Union[_t.MutableSequence[_S], _t.Tuple[_S], _t.Set[_S]]
|
2021-09-16 15:57:12 -07:00
|
|
|
"""Like `typing.Sequence`, but excludes `str`."""
|