From 5a097f2fabded7f22a957f29b6789e27033cfa8a Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 31 Mar 2016 20:25:25 -0700 Subject: [PATCH] set set to tuple3 --- letsencrypt/cli.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index d2bcce00b..ac5e21d7a 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -86,10 +86,11 @@ More detailed help: """ +# These argparse parameters should be removed when detecting defaults. +ARGPARSE_PARAMS_TO_REMOVE = ("const", "nargs", "type",) + + # These sets are used when to help detect options set by the user. -ARGPARSE_PARAMS_TO_REMOVE = set(("const", "nargs", "type",)) - - EXIT_ACTIONS = set(("help", "version",))