summaryrefslogtreecommitdiffstats
path: root/examples/prompts/auto-completion/combine-multiple-completers.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/auto-completion/combine-multiple-completers.py')
-rwxr-xr-xexamples/prompts/auto-completion/combine-multiple-completers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/auto-completion/combine-multiple-completers.py b/examples/prompts/auto-completion/combine-multiple-completers.py
index 511988b..7c21078 100755
--- a/examples/prompts/auto-completion/combine-multiple-completers.py
+++ b/examples/prompts/auto-completion/combine-multiple-completers.py
@@ -2,6 +2,7 @@
"""
Example of multiple individual completers that are combined into one.
"""
+
from prompt_toolkit import prompt
from prompt_toolkit.completion import WordCompleter, merge_completers
@@ -69,7 +70,7 @@ def main():
text = prompt(
"Give some animals: ", completer=completer, complete_while_typing=False
)
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":