Skip to content

Commit f751531

Browse files
committed
hotfix
1 parent 251b58e commit f751531

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
@@ -1829,8 +1829,8 @@ def isinstance(
18291829
) -> TypeIs[_T | _T1]: ...
18301830
@overload
18311831
def isinstance(
1832-
obj: object, class_or_tuple: tuple[type[_T], type[_T1], type[T2]], /
1833-
) -> TypeIs[T | T1 | T2]: ...
1832+
obj: object, class_or_tuple: tuple[type[_T], type[_T1], type[_T2]], /
1833+
) -> TypeIs[_T | _T1 | _T2]: ...
18341834
@overload
18351835
def isinstance(
18361836
obj: object, class_or_tuple: tuple[type[_T], type[_T1], type[_T2], type[_T3]], /

0 commit comments

Comments
 (0)