From cc02656f523b0d9f00f05e2ea9c4b93c158e8b78 Mon Sep 17 00:00:00 2001 From: Kent Bull Date: Thu, 2 Jan 2025 07:15:28 -0700 Subject: [PATCH] fix: use store instead of store_true for args expecting nonces (#915) --- src/keri/app/cli/commands/vc/create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keri/app/cli/commands/vc/create.py b/src/keri/app/cli/commands/vc/create.py index ac18edf1..7aaa5914 100644 --- a/src/keri/app/cli/commands/vc/create.py +++ b/src/keri/app/cli/commands/vc/create.py @@ -37,9 +37,9 @@ parser.add_argument("--private", help="flag to indicate if this credential needs privacy preserving features", action="store_true") parser.add_argument("--private-credential-nonce", help="nonce for vc", - action="store_true") + action="store") parser.add_argument("--private-subject-nonce", help="nonce for subject", - action="store_true") + action="store") parser.add_argument('--passcode', '-p', help='21 character encryption passcode for keystore (is not saved)', dest="bran", default=None) # passcode => bran parser.add_argument("--time", help="timestamp for the credential creation", required=False, default=None)