From 86496529159203792ba2878cb5b2f3e63c6071df Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Sat, 5 Dec 2020 09:51:22 -0800 Subject: [PATCH] Shorthand CLI flags for alice verifying key. --- nucypher/characters/control/specifications/bob.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nucypher/characters/control/specifications/bob.py b/nucypher/characters/control/specifications/bob.py index 227902651..77f77d3ec 100644 --- a/nucypher/characters/control/specifications/bob.py +++ b/nucypher/characters/control/specifications/bob.py @@ -31,6 +31,7 @@ class JoinPolicy(BaseSchema): #TODO: this doesn't have a cli implementation load_only=True, required=True, click=click.option( '--alice-verifying-key', + '-avk', help="Alice's verifying key as a hexadecimal string", required=True, type=click.STRING,)) @@ -51,6 +52,7 @@ class Retrieve(BaseSchema): required=True, load_only=True, click=click.option( '--alice-verifying-key', + '-avk', help="Alice's verifying key as a hexadecimal string", type=click.STRING, required=True))