Files
Iliyan Angelov 0c59fe1173 updates
2025-11-17 18:26:30 +02:00

5 lines
84 B
Python

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