Skip to content

Commit 4f7d8c9

Browse files
authored
hotfix
1 parent 1394a94 commit 4f7d8c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

stdlib/builtins.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1830,8 +1830,8 @@ def isinstance(
18301830
) -> TypeIs[_T | _T1]: ...
18311831
@overload
18321832
def isinstance(
1833-
obj: object, class_or_tuple: tuple[type[_T], type[_T1], type[T2]], /
1834-
) -> TypeIs[T | T1 | T2]: ...
1833+
obj: object, class_or_tuple: tuple[type[_T], type[_T1], type[_T2]], /
1834+
) -> TypeIs[_T | _T1 | _T2]: ...
18351835
@overload
18361836
def isinstance(
18371837
obj: object, class_or_tuple: tuple[type[_T], type[_T1], type[_T2], type[_T3]], /

0 commit comments

Comments
 (0)