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