mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
9 lines
202 B
Python
9 lines
202 B
Python
"""Custom types."""
|
|
|
|
# Standard Library
|
|
import typing as _t
|
|
|
|
_S = _t.TypeVar("_S")
|
|
|
|
Series = _t.Union[_t.MutableSequence[_S], _t.Tuple[_S], _t.Set[_S]]
|
|
"""Like `typing.Sequence`, but excludes `str`."""
|