Skip to content

Commit d51f08b

Browse files
authored
Merge branch 'main' into skip_context-check-for-our-tests
2 parents ce235a4 + ed6ffe4 commit d51f08b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ def collect_setup_info() -> SetupInfo:
231231
info_panel = Panel(
232232
Text(
233233
"📁 Let's identify your Python module directory.\n\n"
234-
"This is usually the top-level directory containing all your Python source code.\n"
235-
"We've automatically detected some directories for you.",
234+
"This is usually the top-level directory containing all your Python source code.\n",
236235
style="cyan",
237236
),
238237
title="🔍 Module Discovery",
@@ -936,7 +935,6 @@ def configure_pyproject_toml(setup_info: SetupInfo) -> None:
936935
codeflash_section["module-root"] = setup_info.module_root
937936
codeflash_section["tests-root"] = setup_info.tests_root
938937
codeflash_section["test-framework"] = setup_info.test_framework
939-
codeflash_section["benchmarks-root"] = setup_info.benchmarks_root if setup_info.benchmarks_root else ""
940938
codeflash_section["ignore-paths"] = setup_info.ignore_paths
941939
codeflash_section["disable-telemetry"] = not enable_telemetry
942940
if setup_info.git_remote not in ["", "origin"]:

0 commit comments

Comments
 (0)