We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 537c8af commit 888b971Copy full SHA for 888b971
mypyc/irbuild/for_helpers.py
@@ -1201,7 +1201,6 @@ def get_expr_length(expr: Expression) -> int | None:
1201
other = sum(not isinstance(i, StarExpr) for i in expr.items)
1202
return other + sum(stars) # type: ignore [arg-type]
1203
elif isinstance(expr, StarExpr):
1204
- # star expression needs some extra logic but that can come later, this is good for now
1205
return get_expr_length(expr.expr)
1206
elif (
1207
isinstance(expr, RefExpr)
0 commit comments