From 6dc655898df34ad424dfc467a8b276fdf31bd791 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 5 Jun 2024 06:45:15 +0200 Subject: Merging upstream version 3.0.46. Signed-off-by: Daniel Baumann --- examples/prompts/custom-key-binding.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/prompts/custom-key-binding.py') 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__": -- cgit v1.2.3