summaryrefslogtreecommitdiffstats
path: root/examples/prompts/auto-completion/fuzzy-word-completer.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/auto-completion/fuzzy-word-completer.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/auto-completion/fuzzy-word-completer.py')
-rwxr-xr-xexamples/prompts/auto-completion/fuzzy-word-completer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/auto-completion/fuzzy-word-completer.py b/examples/prompts/auto-completion/fuzzy-word-completer.py
index 329c0c1..0ea059e 100755
--- a/examples/prompts/auto-completion/fuzzy-word-completer.py
+++ b/examples/prompts/auto-completion/fuzzy-word-completer.py
@@ -7,6 +7,7 @@ Press [Tab] to complete the current word.
and shows all the completions. (In the menu)
- Any following tab press cycles through all the possible completions.
"""
+
from prompt_toolkit.completion import FuzzyWordCompleter
from prompt_toolkit.shortcuts import prompt
@@ -52,7 +53,7 @@ def main():
text = prompt(
"Give some animals: ", completer=animal_completer, complete_while_typing=True
)
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":