2026-05-20 10:50:30 +00:00

5 lines
84 B
Python

from typing import Union, TypeVar
T = TypeVar("T")
ExpandableField = Union[str, T]