summaryrefslogtreecommitdiffstats
path: root/examples/prompts/up-arrow-partial-string-matching.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/up-arrow-partial-string-matching.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/up-arrow-partial-string-matching.py')
-rwxr-xr-xexamples/prompts/up-arrow-partial-string-matching.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/up-arrow-partial-string-matching.py b/examples/prompts/up-arrow-partial-string-matching.py
index 742a12e..999b1f9 100755
--- a/examples/prompts/up-arrow-partial-string-matching.py
+++ b/examples/prompts/up-arrow-partial-string-matching.py
@@ -5,6 +5,7 @@ Simple example of a CLI that demonstrates up-arrow partial string matching.
When you type some input, it's possible to use the up arrow to filter the
history on the items starting with the given input text.
"""
+
from prompt_toolkit import PromptSession
from prompt_toolkit.history import InMemoryHistory
@@ -34,7 +35,7 @@ def main():
else:
break
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":