File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,20 @@ def main_menu(context: ViewContext):
1414 terminal = context .terminal
1515 while True :
1616 exit_instruction = "⟪ Hit Ctrl+C at any time to exit a menu ⟫"
17- with terminal .nest (draw_box ("CIB Mango Tree" ) + "\n " + exit_instruction + "\n " ):
17+ welcome_message = "Import your datasets to run analysis for likelihood of coordinated inauthentic behavior."
18+ with terminal .nest (
19+ draw_box ("CIB Mango Tree" )
20+ + "\n "
21+ + exit_instruction
22+ + "\n \n "
23+ + welcome_message
24+ + "\n "
25+ ):
1826 action = prompts .list_input (
1927 "What would you like to do?" ,
2028 choices = [
21- ("Import dataset" , "new_project" ),
22- ("Load existing dataset " , "load_project" ),
29+ ("Import dataset for new project " , "new_project" ),
30+ ("Review existing project " , "load_project" ),
2331 ("Exit" , "exit" ),
2432 ],
2533 )
You can’t perform that action at this time.
0 commit comments