ty icon indicating copy to clipboard operation
ty copied to clipboard

Fix `Todo` type for starred expressions

Open AlexWaygood opened this issue 1 week ago • 0 comments

(1, *(2, 3), 4) should be inferred as tuple[Literal[1], Literal[2], Literal[3], Literal[4]], but we currentluy infer it as tuple[Literal[1], @Todo(StarredExpression), Literal[4]].

AlexWaygood avatar Dec 18 '25 14:12 AlexWaygood