Skip to content

Commit 81fd730

Browse files
committed
Fix prompt text spacing in main function
1 parent 9d89d06 commit 81fd730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sgpt/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def main(
237237

238238
while shell and interaction:
239239
option = typer.prompt(
240-
text="[E]xecute, [D]escribe, [M]odify, [A]bort ",
240+
text="[E]xecute, [D]escribe, [M]odify, [A]bort",
241241
type=Choice(("e", "d", "a", "y", "m"), case_sensitive=False),
242242
default="e" if cfg.get("DEFAULT_EXECUTE_SHELL_CMD") == "true" else "a",
243243
show_choices=False,

0 commit comments

Comments
 (0)