File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def main() -> None:
56
56
# parser.
57
57
logging .basicConfig (level = logging .DEBUG if ("--debug" in sys .argv or "-d" in sys .argv ) else logging .INFO )
58
58
59
- case_version_choices_list = ["none" , "case-" + CURRENT_CASE_VERSION ]
59
+ built_version_choices_list = ["none" , "case-" + CURRENT_CASE_VERSION ]
60
60
61
61
# Add arguments specific to case_validate.
62
62
parser .add_argument (
@@ -67,7 +67,7 @@ def main() -> None:
67
67
)
68
68
parser .add_argument (
69
69
"--built-version" ,
70
- choices = tuple (case_version_choices_list ),
70
+ choices = tuple (built_version_choices_list ),
71
71
default = "case-" + CURRENT_CASE_VERSION ,
72
72
help = "Monolithic aggregation of CASE ontology files at certain versions. Does not require networking to use. Default is most recent CASE release."
73
73
)
You can’t perform that action at this time.
0 commit comments