Skip to content

Commit a67c010

Browse files
committed
Pacify MyPy
1 parent fa5c6fd commit a67c010

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/cases_generator/analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def convert_stack_item(
337337
cond = replace_op_arg_1
338338
return StackItem(item.name, item.type, cond, item.size)
339339

340-
def check_unused(stack: list[StackItem], input_names: dict[str, lexer.Token]):
340+
def check_unused(stack: list[StackItem], input_names: dict[str, lexer.Token]) -> None:
341341
"Unused items cannot be on the stack above used, non-peek items"
342342
seen_unused = False
343343
for item in reversed(stack):

0 commit comments

Comments
 (0)