File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -231,8 +231,7 @@ def collect_setup_info() -> SetupInfo:
231
231
info_panel = Panel (
232
232
Text (
233
233
"📁 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 " ,
236
235
style = "cyan" ,
237
236
),
238
237
title = "🔍 Module Discovery" ,
@@ -936,7 +935,6 @@ def configure_pyproject_toml(setup_info: SetupInfo) -> None:
936
935
codeflash_section ["module-root" ] = setup_info .module_root
937
936
codeflash_section ["tests-root" ] = setup_info .tests_root
938
937
codeflash_section ["test-framework" ] = setup_info .test_framework
939
- codeflash_section ["benchmarks-root" ] = setup_info .benchmarks_root if setup_info .benchmarks_root else ""
940
938
codeflash_section ["ignore-paths" ] = setup_info .ignore_paths
941
939
codeflash_section ["disable-telemetry" ] = not enable_telemetry
942
940
if setup_info .git_remote not in ["" , "origin" ]:
You can’t perform that action at this time.
0 commit comments