Skip to content

Commit 684661e

Browse files
typo
1 parent 989b1f3 commit 684661e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code_to_optimize/bubble_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ def sorter(arr):
77
arr[j] = arr[j + 1]
88
arr[j + 1] = temp
99
print(f"result: {arr}")
10-
return arr
10+
return arr

codeflash/context/code_context_extractor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_code_optimization_context(
6363
# Extract code context for optimization
6464
final_read_writable_code = extract_code_markdown_context_from_files(
6565
helpers_of_fto_dict,
66-
helpers_of_helpers_dict,
66+
{},
6767
project_root_path,
6868
remove_docstrings=False,
6969
code_context_type=CodeContextType.READ_WRITABLE,

0 commit comments

Comments
 (0)