Removed a from model value names

This commit is contained in:
Brandon Rozek 2024-11-26 15:52:20 -05:00
parent bdc1f1e64d
commit 10d2e47665
2 changed files with 3 additions and 3 deletions

View file

@ -410,7 +410,7 @@ def mvalue_from_index(i: int) -> ModelValue:
Given an index, return the
representation of the model value.
"""
return ModelValue(f"a{i}")
return ModelValue(f"{i}")
def parse_mvalue(x: str) -> ModelValue:
"""