updates
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
from typing import Union, TypeVar
|
||||
|
||||
T = TypeVar("T")
|
||||
ExpandableField = Union[str, T]
|
||||
Reference in New Issue
Block a user
@@ -0,0 +1,4 @@
|
||||
from typing import Union, TypeVar
|
||||
|
||||
T = TypeVar("T")
|
||||
ExpandableField = Union[str, T]
|
||||