5 lines
84 B
Python
5 lines
84 B
Python
from typing import Union, TypeVar
|
|
|
|
T = TypeVar("T")
|
|
ExpandableField = Union[str, T]
|