Files
folkugat-web/folkugat_web/typing.py
2025-03-09 20:00:54 +01:00

7 lines
116 B
Python

from typing import TypeVar
T = TypeVar("T")
ListOrValue = T | list[T]
OptionalListOrValue = ListOrValue[T] | None