Skip to content

Commit 01a189a

Browse files
committed
fix linter
1 parent a6e8cdd commit 01a189a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/verification/equivalence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def get_test_key(test_result: FunctionTestInvocation) -> tuple[str, str, str, st
172172
)
173173

174174
# Compare only for test_keys present in original
175-
for test_key, (orig_count, orig_had_failure) in orig_by_func.items():
175+
for test_key, (_orig_count, orig_had_failure) in orig_by_func.items():
176176
cand_group = cand_by_func.get(test_key)
177177
if cand_group is None:
178178
continue # Already handled above

0 commit comments

Comments
 (0)