We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989b1f3 commit 684661eCopy full SHA for 684661e
code_to_optimize/bubble_sort.py
@@ -7,4 +7,4 @@ def sorter(arr):
7
arr[j] = arr[j + 1]
8
arr[j + 1] = temp
9
print(f"result: {arr}")
10
- return arr
+ return arr
codeflash/context/code_context_extractor.py
@@ -63,7 +63,7 @@ def get_code_optimization_context(
63
# Extract code context for optimization
64
final_read_writable_code = extract_code_markdown_context_from_files(
65
helpers_of_fto_dict,
66
- helpers_of_helpers_dict,
+ {},
67
project_root_path,
68
remove_docstrings=False,
69
code_context_type=CodeContextType.READ_WRITABLE,
0 commit comments