We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c327272 commit e85f96fCopy full SHA for e85f96f
bootstrap/package_manager.py
@@ -28,7 +28,7 @@ def _query_yes_no(question: str, no_confirm: bool) -> bool:
28
print("Running {} with noconfirm".format(question))
29
return True
30
while True:
31
- print("{} [y/n]".format(question))
+ print("{} [y/n]".format(question), end=' ', flush=True)
32
choice = input().lower()
33
if choice in valid:
34
return valid[choice]
0 commit comments