summaryrefslogtreecommitdiffstats
path: root/examples/prompts/auto-completion/slow-completions.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/auto-completion/slow-completions.py')
-rwxr-xr-xexamples/prompts/auto-completion/slow-completions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/auto-completion/slow-completions.py b/examples/prompts/auto-completion/slow-completions.py
index cce9d59..0c9cc11 100755
--- a/examples/prompts/auto-completion/slow-completions.py
+++ b/examples/prompts/auto-completion/slow-completions.py
@@ -12,6 +12,7 @@ An example of how to deal with slow auto completion code.
- We also set a `loading` boolean in the completer function to keep track of
when the completer is running, and display this in the toolbar.
"""
+
import time
from prompt_toolkit.completion import Completer, Completion
@@ -96,7 +97,7 @@ def main():
bottom_toolbar=bottom_toolbar,
complete_style=CompleteStyle.MULTI_COLUMN,
)
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":