From 0823d2f38beada66a9ca406cc09386ca1ce756d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Breuer?= Date: Tue, 24 Sep 2024 14:21:55 +0200 Subject: [PATCH] Update prompt to more meaningful texts --- pynitrokey/cli/nk3/piv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pynitrokey/cli/nk3/piv.py b/pynitrokey/cli/nk3/piv.py index e7d8845d..67b33b95 100644 --- a/pynitrokey/cli/nk3/piv.py +++ b/pynitrokey/cli/nk3/piv.py @@ -131,14 +131,14 @@ def change_admin_key(current_admin_key: str, new_admin_key: str) -> None: @click.option( "--current-pin", type=click.STRING, - prompt="Enter the PIN", + prompt="Enter the current PIN", hide_input=True, help="Current PIN.", ) @click.option( "--new-pin", type=click.STRING, - prompt="Enter the PIN", + prompt="Enter the new PIN", hide_input=True, help="New PIN.", )