Skip to content

Commit 194341b

Browse files
committed
Updated printed messages
1 parent 53a30ad commit 194341b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/murfey/cli/create_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def print_welcome_message():
5353
console.print(panel, justify="center")
5454
console.rule()
5555

56-
prompt("Press any key to begin the setup")
56+
input("Press 'Enter' to begin the setup")
5757

5858

5959
def print_field_info(field: ModelField):
@@ -109,9 +109,9 @@ def ask_to_use_default(field: ModelField):
109109
default value.
110110
"""
111111
message = (
112-
"Would you like to use the default value for this field? \n"
113-
f"Default: {field.field_info.default!r} \n"
114-
"[bold bright_magenta](y/n)[/bold bright_magenta]"
112+
"Would you like to use the default value for this field? "
113+
"[bold bright_magenta](y/n)[/bold bright_magenta] \n"
114+
f"{field.field_info.default!r}"
115115
)
116116
return ask_for_permission(message)
117117

0 commit comments

Comments
 (0)