Skip to content

Commit 888b971

Browse files
Update for_helpers.py
1 parent 537c8af commit 888b971

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

mypyc/irbuild/for_helpers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,6 @@ def get_expr_length(expr: Expression) -> int | None:
12011201
other = sum(not isinstance(i, StarExpr) for i in expr.items)
12021202
return other + sum(stars) # type: ignore [arg-type]
12031203
elif isinstance(expr, StarExpr):
1204-
# star expression needs some extra logic but that can come later, this is good for now
12051204
return get_expr_length(expr.expr)
12061205
elif (
12071206
isinstance(expr, RefExpr)

0 commit comments

Comments
 (0)