Unmark types.UnionType

This commit is contained in:
Moreal
2021-12-06 02:47:18 +09:00
parent 6f3bcb957d
commit 72ba40ec6a

2
Lib/types.py vendored
View File

@@ -301,7 +301,7 @@ def coroutine(func):
return wrapped
GenericAlias = type(list[int])
# UnionType = type(int | str)
UnionType = type(int | str)
EllipsisType = type(Ellipsis)
NoneType = type(None)