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/accept-default.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/prompts/accept-default.py') diff --git a/examples/prompts/accept-default.py b/examples/prompts/accept-default.py index 311ef46..0ef45d9 100644 --- a/examples/prompts/accept-default.py +++ b/examples/prompts/accept-default.py @@ -6,6 +6,7 @@ user typed without allowing him/her to edit it. This should display the prompt with all the formatting like usual, but not allow any editing. """ + from prompt_toolkit import HTML, prompt if __name__ == "__main__": @@ -13,4 +14,4 @@ if __name__ == "__main__": HTML("Type some input: "), accept_default=True, default="test" ) - print("You said: %s" % answer) + print(f"You said: {answer}") -- cgit v1.2.3