Skip to content

Commit 9feca44

Browse files
author
Tyler Payne
committed
Wrap cli prompt options in parentheses
A cleaner look
1 parent 00ff73d commit 9feca44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mcp_interviewer/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def cli():
166166
)
167167
accept_risk = args.accept_risk
168168
while not accept_risk:
169-
input_str = input("Do you accept this risk? y|[n]: ").strip().lower()
169+
input_str = input("Do you accept this risk? (y|[n]): ").strip().lower()
170170
if not input_str or input_str == "n":
171171
sys.exit(1)
172172
else:

0 commit comments

Comments
 (0)