summaryrefslogtreecommitdiffstats
path: root/examples/prompts/auto-completion/autocompletion-like-readline.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/auto-completion/autocompletion-like-readline.py')
-rwxr-xr-xexamples/prompts/auto-completion/autocompletion-like-readline.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/auto-completion/autocompletion-like-readline.py b/examples/prompts/auto-completion/autocompletion-like-readline.py
index 613d3e7..eac0edd 100755
--- a/examples/prompts/auto-completion/autocompletion-like-readline.py
+++ b/examples/prompts/auto-completion/autocompletion-like-readline.py
@@ -3,6 +3,7 @@
Autocompletion example that displays the autocompletions like readline does by
binding a custom handler to the Tab key.
"""
+
from prompt_toolkit.completion import WordCompleter
from prompt_toolkit.shortcuts import CompleteStyle, prompt
@@ -51,7 +52,7 @@ def main():
completer=animal_completer,
complete_style=CompleteStyle.READLINE_LIKE,
)
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":