Skip to content

Commit ef083ec

Browse files
remove comments
1 parent c8d4e05 commit ef083ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeflash/optimization/function_optimizer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def generate_and_instrument_tests(
219219
revert_to_print=bool(get_pr_number()),
220220
):
221221
generated_results = self.generate_tests_and_optimizations(
222-
testgen_context_code=code_context.testgen_context_code, # TODO: should we send the markdow context for the testgen instead.
222+
testgen_context_code=code_context.testgen_context_code,
223223
read_writable_code=code_context.read_writable_code,
224224
read_only_context_code=code_context.read_only_context_code,
225225
helper_functions=code_context.helper_functions,
@@ -292,7 +292,7 @@ def optimize_function(self) -> Result[BestOptimization, str]:
292292

293293
should_run_experiment, code_context, original_helper_code = initialization_result.unwrap()
294294

295-
code_print(code_context.read_writable_code.flat) # Should we print the markdown or the flattened code?
295+
code_print(code_context.read_writable_code.flat)
296296

297297
test_setup_result = self.generate_and_instrument_tests( # also generates optimizations
298298
code_context, should_run_experiment=should_run_experiment

0 commit comments

Comments
 (0)