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