Get user input with styled prompt
(self)
| 227 | print(menu) |
| 228 | |
| 229 | def get_user_input(self): |
| 230 | """Get user input with styled prompt""" |
| 231 | print(f"\n{Colors.BOLD}{Colors.OKCYAN}➤ Your choice: {Colors.ENDC}", end="") |
| 232 | return input().strip().lower() |
| 233 | |
| 234 | def upload_file_gui(self) -> Optional[str]: |
| 235 | """Enhanced file upload interface with better error handling""" |
no outgoing calls
no test coverage detected