Skip to content

Commit 8550e69

Browse files
committed
precommit fix
1 parent 97eabcf commit 8550e69

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

codeflash/optimization/function_optimizer.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,9 @@ def optimize_function(self) -> Result[BestOptimization, str]: # noqa: PLR0911
215215
instrumented_unittests_created_for_function = self.instrument_existing_tests(function_to_all_tests)
216216
if self.args.override_fixtures:
217217
logger.info("Disabling all autouse fixtures associated with the generated test files")
218-
original_conftest_content = modify_autouse_fixture(
219-
generated_test_paths + generated_perf_test_paths
220-
)
218+
original_conftest_content = modify_autouse_fixture(generated_test_paths + generated_perf_test_paths)
221219
logger.info("Add custom marker to generated test files")
222-
add_custom_marker_to_all_tests(
223-
generated_test_paths + generated_perf_test_paths
224-
)
220+
add_custom_marker_to_all_tests(generated_test_paths + generated_perf_test_paths)
225221

226222
# Get a dict of file_path_to_classes of fto and helpers_of_fto
227223
file_path_to_helper_classes = defaultdict(set)

0 commit comments

Comments
 (0)