Skip to content

Commit

Permalink
fix: use store instead of store_true for args expecting nonces (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentbull authored Jan 2, 2025
1 parent f0643e2 commit cc02656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keri/app/cli/commands/vc/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cc02656

Please sign in to comment.