summaryrefslogtreecommitdiffstats
path: root/examples/prompts/patch-stdout.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/patch-stdout.py')
-rwxr-xr-xexamples/prompts/patch-stdout.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/patch-stdout.py b/examples/prompts/patch-stdout.py
index 1c83524..3a89f36 100755
--- a/examples/prompts/patch-stdout.py
+++ b/examples/prompts/patch-stdout.py
@@ -5,6 +5,7 @@ An example that demonstrates how `patch_stdout` works.
This makes sure that output from other threads doesn't disturb the rendering of
the prompt, but instead is printed nicely above the prompt.
"""
+
import threading
import time
@@ -31,7 +32,7 @@ def main():
# should not disturb anything.
with patch_stdout():
result = prompt("Say something: ")
- print("You said: %s" % result)
+ print(f"You said: {result}")
# Stop thread.
running = False