summaryrefslogtreecommitdiffstats
path: root/examples/prompts/accept-default.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
commit437643bd908d99924e3003db4d9d3718d9df5813 (patch)
tree9752c4e8ebd3ae23f7a586066a874bd4418feeaa /examples/prompts/accept-default.py
parentAdding debian version 3.0.43-2. (diff)
downloadprompt-toolkit-437643bd908d99924e3003db4d9d3718d9df5813.tar.xz
prompt-toolkit-437643bd908d99924e3003db4d9d3718d9df5813.zip
Merging upstream version 3.0.46.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--examples/prompts/accept-default.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/accept-default.py b/examples/prompts/accept-default.py
index 311ef46..0ef45d9 100644
--- a/examples/prompts/accept-default.py
+++ b/examples/prompts/accept-default.py
@@ -6,6 +6,7 @@ user typed without allowing him/her to edit it.
This should display the prompt with all the formatting like usual, but not
allow any editing.
"""
+
from prompt_toolkit import HTML, prompt
if __name__ == "__main__":
@@ -13,4 +14,4 @@ if __name__ == "__main__":
HTML("<b>Type <u>some input</u>: </b>"), accept_default=True, default="test"
)
- print("You said: %s" % answer)
+ print(f"You said: {answer}")