From 684661e78ac68914d1867edd372ddf19b6a86dfd Mon Sep 17 00:00:00 2001 From: mohammed Date: Wed, 6 Aug 2025 03:40:06 +0300 Subject: [PATCH] typo --- code_to_optimize/bubble_sort.py | 2 +- codeflash/context/code_context_extractor.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code_to_optimize/bubble_sort.py b/code_to_optimize/bubble_sort.py index 787cc4a90..9e97f63a0 100644 --- a/code_to_optimize/bubble_sort.py +++ b/code_to_optimize/bubble_sort.py @@ -7,4 +7,4 @@ def sorter(arr): arr[j] = arr[j + 1] arr[j + 1] = temp print(f"result: {arr}") - return arr \ No newline at end of file + return arr diff --git a/codeflash/context/code_context_extractor.py b/codeflash/context/code_context_extractor.py index 97befcb4a..cd3728038 100644 --- a/codeflash/context/code_context_extractor.py +++ b/codeflash/context/code_context_extractor.py @@ -63,7 +63,7 @@ def get_code_optimization_context( # Extract code context for optimization final_read_writable_code = extract_code_markdown_context_from_files( helpers_of_fto_dict, - helpers_of_helpers_dict, + {}, project_root_path, remove_docstrings=False, code_context_type=CodeContextType.READ_WRITABLE,