set set to tuple3

This commit is contained in:
Brad Warren
2016-03-31 20:25:25 -07:00
parent 90f6ed2688
commit 5a097f2fab
+4 -3
View File
@@ -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",))