Skip to content

Commit 192cf0f

Browse files
style: fix unused loop variable in function_optimizer.py
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b6af185 commit 192cf0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codeflash/optimization/function_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ def instrument_existing_tests(self, function_to_all_tests: dict[str, set[Functio
16131613
(tests_in_file.tests_in_file.test_file, tests_in_file.tests_in_file.test_type)
16141614
].append(tests_in_file)
16151615

1616-
for (test_file, test_type), tests_in_file_list in test_file_invocation_positions.items():
1616+
for test_file, test_type in test_file_invocation_positions:
16171617
path_obj_test_file = Path(test_file)
16181618
if test_type == TestType.EXISTING_UNIT_TEST:
16191619
existing_test_files_count += 1

0 commit comments

Comments
 (0)