Introduce TypeAlias everywhere (#869)
* Introduce TypeAlias everywhere * Undo changes
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
from typing import Any, Dict, IO, Literal
|
||||
from typing import Any, Dict, IO, Literal, TypeAlias
|
||||
|
||||
File = IO[Any]
|
||||
Component = Any
|
||||
ComponentOptions = Dict[str, Any]
|
||||
File : TypeAlias = IO[Any]
|
||||
Component : TypeAlias = Any
|
||||
ComponentOptions : TypeAlias = Dict[str, Any]
|
||||
ComponentName = Literal\
|
||||
[
|
||||
'age_modifier_direction_slider',
|
||||
|
||||
Reference in New Issue
Block a user