Skip to content

Commit aa95616

Browse files
committed
add docstring
1 parent be43234 commit aa95616

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mypy/checker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8043,6 +8043,8 @@ def are_argument_counts_overlapping(t: CallableType, s: CallableType) -> bool:
80438043
def get_type_var_group_variants(
80448044
variables: list[TypeVarLikeType],
80458045
) -> Generator[dict[TypeVarId, Type], None, None]:
8046+
"""Expand a group of type variables into all possible combinations of their values."""
8047+
80468048
tvar_values = []
80478049
for tvar in variables:
80488050
if isinstance(tvar, TypeVarType) and tvar.values:

0 commit comments

Comments
 (0)