summaryrefslogtreecommitdiffstats
path: root/examples/prompts/get-password-with-toggle-display-shortcut.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
commit6dc655898df34ad424dfc467a8b276fdf31bd791 (patch)
tree0a3f3addbfc0b81e3850a628afe62ce830a8b0f3 /examples/prompts/get-password-with-toggle-display-shortcut.py
parentReleasing progress-linux version 3.0.43-2~progress7.99u1. (diff)
downloadprompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.tar.xz
prompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.zip
Merging upstream version 3.0.46.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/prompts/get-password-with-toggle-display-shortcut.py')
-rwxr-xr-xexamples/prompts/get-password-with-toggle-display-shortcut.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/prompts/get-password-with-toggle-display-shortcut.py b/examples/prompts/get-password-with-toggle-display-shortcut.py
index b89cb41..a233e5e 100755
--- a/examples/prompts/get-password-with-toggle-display-shortcut.py
+++ b/examples/prompts/get-password-with-toggle-display-shortcut.py
@@ -3,6 +3,7 @@
get_password function that displays asterisks instead of the actual characters.
With the addition of a ControlT shortcut to hide/show the input.
"""
+
from prompt_toolkit import prompt
from prompt_toolkit.filters import Condition
from prompt_toolkit.key_binding import KeyBindings
@@ -21,7 +22,7 @@ def main():
password = prompt(
"Password: ", is_password=Condition(lambda: hidden[0]), key_bindings=bindings
)
- print("You said: %s" % password)
+ print(f"You said: {password}")
if __name__ == "__main__":