From 52b99b375ced1053cfb4cb3d4ef148860b3ed463 Mon Sep 17 00:00:00 2001 From: derekpierre Date: Sat, 18 Nov 2023 18:26:50 -0500 Subject: [PATCH] Clarify help text for access controller cli option in `nucypher_dkg` script. --- scripts/hooks/nucypher_dkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/hooks/nucypher_dkg.py b/scripts/hooks/nucypher_dkg.py index 7a68cbf8e7..15442d4c4b 100644 --- a/scripts/hooks/nucypher_dkg.py +++ b/scripts/hooks/nucypher_dkg.py @@ -113,7 +113,7 @@ def get_transacting_power(signer: Signer): @click.option( "--access-controller", "-a", - help="Global allow list or open access authorizer", + help=f"'{GLOBAL_ALLOW_LIST}' or 'OpenAccessAuthorizer' contract", type=click.Choice([GLOBAL_ALLOW_LIST, "OpenAccessAuthorizer"]), required=False, )