summaryrefslogtreecommitdiffstats
path: root/examples/prompts/custom-key-binding.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
commit5b43aaac61ac94abe722bc98ae58468618f2f512 (patch)
tree3d58c89faa23d194f83abb24ae1fd05067538fff /examples/prompts/custom-key-binding.py
parentAdding upstream version 3.0.43. (diff)
downloadprompt-toolkit-5b43aaac61ac94abe722bc98ae58468618f2f512.tar.xz
prompt-toolkit-5b43aaac61ac94abe722bc98ae58468618f2f512.zip
Adding upstream version 3.0.46.upstream/3.0.46
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/prompts/custom-key-binding.py')
-rwxr-xr-xexamples/prompts/custom-key-binding.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/custom-key-binding.py b/examples/prompts/custom-key-binding.py
index 32d889e..b918ab3 100755
--- a/examples/prompts/custom-key-binding.py
+++ b/examples/prompts/custom-key-binding.py
@@ -2,6 +2,7 @@
"""
Example of adding a custom key binding to a prompt.
"""
+
import asyncio
from prompt_toolkit import prompt
@@ -70,7 +71,7 @@ def main():
# Read input.
print('Press F4 to insert "hello world", type "xy" to insert "z":')
text = prompt("> ", key_bindings=bindings)
- print("You said: %s" % text)
+ print(f"You said: {text}")
if __name__ == "__main__":