summaryrefslogtreecommitdiffstats
path: root/examples/prompts/placeholder-text.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
commit6dc655898df34ad424dfc467a8b276fdf31bd791 (patch)
tree0a3f3addbfc0b81e3850a628afe62ce830a8b0f3 /examples/prompts/placeholder-text.py
parentReleasing progress-linux version 3.0.43-2~progress7.99u1. (diff)
downloadprompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.tar.xz
prompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.zip
Merging upstream version 3.0.46.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/prompts/placeholder-text.py')
-rwxr-xr-xexamples/prompts/placeholder-text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/placeholder-text.py b/examples/prompts/placeholder-text.py
index 35e1c6c..65d77a1 100755
--- a/examples/prompts/placeholder-text.py
+++ b/examples/prompts/placeholder-text.py
@@ -2,6 +2,7 @@
"""
Example of a placeholder that's displayed as long as no input is given.
"""
+
from prompt_toolkit import prompt
from prompt_toolkit.formatted_text import HTML
@@ -10,4 +11,4 @@ if __name__ == "__main__":
"Give me some input: ",
placeholder=HTML('<style color="#888888">(please type something)</style>'),
)
- print("You said: %s" % answer)
+ print(f"You said: {answer}")