Skip to content

Commit d836ead

Browse files
authored
...
1 parent f3b23b1 commit d836ead

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypy/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4040,7 +4040,7 @@ def visit_type_alias_type(self, t: TypeAliasType, /) -> list[mypy.nodes.TypeAlia
40404040
return res
40414041

40424042

4043-
def is_named_instance(t: Type, fullnames: str | Sequence[str, ...]) -> TypeGuard[Instance]:
4043+
def is_named_instance(t: Type, fullnames: str | Iterable[str]) -> TypeGuard[Instance]:
40444044
if isinstance(fullnames, str):
40454045
fullnames = (fullnames,)
40464046

0 commit comments

Comments
 (0)