You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> import typing as t; import typing_extensions as tx
>>> T = t.TypeAliasType("T", object)
>>> TX= tx.TypeAliasType("TX", object)
>>> T |TX
Traceback (most recent call last):
File "<python-input-5>", line 1, in <module>
T | TX
~~^~~~
TypeError: unsupported operand type(s) for |: 'typing.TypeAliasType' and 'TypeAliasType'