Skip to content

Commit adff60e

Browse files
committed
Align variable name
References: * [AC-210] Add validation command to CASE-Utilities-Python Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent c42df16 commit adff60e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

case_utils/case_validate/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def main() -> None:
5656
# parser.
5757
logging.basicConfig(level=logging.DEBUG if ("--debug" in sys.argv or "-d" in sys.argv) else logging.INFO)
5858

59-
case_version_choices_list = ["none", "case-" + CURRENT_CASE_VERSION]
59+
built_version_choices_list = ["none", "case-" + CURRENT_CASE_VERSION]
6060

6161
# Add arguments specific to case_validate.
6262
parser.add_argument(
@@ -67,7 +67,7 @@ def main() -> None:
6767
)
6868
parser.add_argument(
6969
"--built-version",
70-
choices=tuple(case_version_choices_list),
70+
choices=tuple(built_version_choices_list),
7171
default="case-"+CURRENT_CASE_VERSION,
7272
help="Monolithic aggregation of CASE ontology files at certain versions. Does not require networking to use. Default is most recent CASE release."
7373
)

0 commit comments

Comments
 (0)