Check models in parallel

This commit is contained in:
Brandon Rozek 2024-11-26 16:24:49 -05:00
parent fb074ff0e8
commit aeb8ae0440
4 changed files with 26 additions and 14 deletions

View file

@ -1,4 +1,7 @@
from typing import Set
def immutable(_self, _name, _value):
raise Exception("Model values are immutable")
def set_to_str(x: Set) -> str:
return "{" + ", ".join((str(xi) for xi in x)) + "}"