Skip to content

Commit a724058

Browse files
committed
lint
1 parent fa321dc commit a724058

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/typing_extensions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4238,10 +4238,10 @@ def __call__(self, *args, **kwargs):
42384238
raise TypeError(f"{type(self).__name__!r} object is not callable")
42394239

42404240
def __or__(self, other):
4241-
return Union[self, other]
4241+
return typing.Union[self, other]
42424242

42434243
def __ror__(self, other):
4244-
return Union[other, self]
4244+
return typing.Union[other, self]
42454245

42464246
def __getstate__(self):
42474247
raise TypeError(f"Cannot pickle {type(self).__name__!r} object")

0 commit comments

Comments
 (0)