From a9530cabb20901adb43af893891e1307b5185947 Mon Sep 17 00:00:00 2001 From: uzb-dev Date: Wed, 29 Jan 2025 14:29:20 +0100 Subject: [PATCH] Fix typo in delete_credential documentation string. --- pynitrokey/cli/fido2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pynitrokey/cli/fido2.py b/pynitrokey/cli/fido2.py index f6ab6f9b..0aeba672 100644 --- a/pynitrokey/cli/fido2.py +++ b/pynitrokey/cli/fido2.py @@ -344,7 +344,7 @@ def list_credentials(serial: str, pin: str) -> None: ) @click.option("--pin", help="provide PIN instead of asking the user", default=None) @click.option( - "-cid", "--cred-id", help="Credential id of there Credential to be deleted" + "-cid", "--cred-id", help="Credential id of the Credential to be deleted" ) def delete_credential(serial: str, pin: str, cred_id: str) -> None: """Delete a specific credential from the key"""