Skip to content

Commit a785a6a

Browse files
committed
revert panel
1 parent 3646c0b commit a785a6a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

codeflash/cli_cmds/cmd_init.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,18 @@ def collect_setup_info() -> SetupInfo:
228228
custom_dir_option = "enter a custom directory…"
229229
module_subdir_options = [*valid_module_subdirs, curdir_option, custom_dir_option]
230230

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+
style="cyan",
236+
),
237+
title="🔍 Module Discovery",
238+
border_style="bright_blue",
239+
)
240+
console.print(info_panel)
241+
console.print()
242+
231243
questions = [
232244
inquirer.List(
233245
"module_root",

0 commit comments

Comments
 (0)