Skip to content

Commit d43d9ae

Browse files
style: auto-fix ruff formatting for long line
1 parent 0749621 commit d43d9ae

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

codeflash/optimization/optimizer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,9 @@ def get_optimizable_functions(self) -> tuple[dict[Path, list[FunctionToOptimize]
220220
for file_path, funcs in file_to_funcs.items():
221221
new_path = mirror_path(Path(file_path), original_git_root, self.current_worktree)
222222
remapped[new_path] = [
223-
dataclasses.replace(func, file_path=mirror_path(func.file_path, original_git_root, self.current_worktree))
223+
dataclasses.replace(
224+
func, file_path=mirror_path(func.file_path, original_git_root, self.current_worktree)
225+
)
224226
for func in funcs
225227
]
226228
return remapped, count, trace

0 commit comments

Comments
 (0)