mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
10 lines
193 B
Python
10 lines
193 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 Sequence, but excludes `str`."""
|