Skip to content

Commit d43862e

Browse files
committed
ruff format...
... AGAIN
1 parent cf4a665 commit d43862e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

codeflash/optimization/function_optimizer.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,10 @@ def optimize_function(self) -> Result[BestOptimization, str]: # noqa: PLR0911
298298
self.log_successful_optimization(explanation, generated_tests, exp_type)
299299

300300
preexisting_functions_by_filepath: dict[Path, list[str]] = {}
301-
filepaths_to_inspect = [self.function_to_optimize.file_path, *list({helper.file_path for helper in code_context.helper_functions})]
301+
filepaths_to_inspect = [
302+
self.function_to_optimize.file_path,
303+
*list({helper.file_path for helper in code_context.helper_functions}),
304+
]
302305
for filepath in filepaths_to_inspect:
303306
source_code = filepath.read_text(encoding="utf8")
304307
preexisting_functions_by_filepath[filepath] = find_preexisting_objects(source_code)

0 commit comments

Comments
 (0)