7 lines
116 B
Python
7 lines
116 B
Python
from typing import TypeVar
|
|
|
|
T = TypeVar("T")
|
|
|
|
ListOrValue = T | list[T]
|
|
OptionalListOrValue = ListOrValue[T] | None
|