File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -228,19 +228,6 @@ def collect_setup_info() -> SetupInfo:
228
228
custom_dir_option = "enter a custom directory…"
229
229
module_subdir_options = [* valid_module_subdirs , curdir_option , custom_dir_option ]
230
230
231
- info_panel = Panel (
232
- Text (
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." ,
236
- style = "cyan" ,
237
- ),
238
- title = "🔍 Module Discovery" ,
239
- border_style = "bright_blue" ,
240
- )
241
- console .print (info_panel )
242
- console .print ()
243
-
244
231
questions = [
245
232
inquirer .List (
246
233
"module_root" ,
@@ -936,7 +923,6 @@ def configure_pyproject_toml(setup_info: SetupInfo) -> None:
936
923
codeflash_section ["module-root" ] = setup_info .module_root
937
924
codeflash_section ["tests-root" ] = setup_info .tests_root
938
925
codeflash_section ["test-framework" ] = setup_info .test_framework
939
- codeflash_section ["benchmarks-root" ] = setup_info .benchmarks_root if setup_info .benchmarks_root else ""
940
926
codeflash_section ["ignore-paths" ] = setup_info .ignore_paths
941
927
codeflash_section ["disable-telemetry" ] = not enable_telemetry
942
928
if setup_info .git_remote not in ["" , "origin" ]:
You can’t perform that action at this time.
0 commit comments