6 lines
85 B
Python
6 lines
85 B
Python
T = TypeVar("T")
|
|
|
|
|
|
def to_option(value: Optional[T]) -> Option[T]:
|
|
return Some()
|