diff --git a/src/rupert/main.py b/src/rupert/main.py index 08dc533..20aa17a 100644 --- a/src/rupert/main.py +++ b/src/rupert/main.py @@ -95,7 +95,8 @@ def prompt_menu(console: Console, choices: Iterable[Any]) -> int: console.print(f'[bright_yellow]{idx + 1})[/bright_yellow]: {choice}') max_ += 1 while 1: - choice = Prompt.ask('Selection', console=console) + console.print('Selection: ', end='') + choice = Prompt.ask('', console=console) try: i = int(choice) except ValueError: