diff --git a/src/acsets/acsets.py b/src/acsets/acsets.py index 1d5736c..2f938e3 100644 --- a/src/acsets/acsets.py +++ b/src/acsets/acsets.py @@ -83,7 +83,7 @@ def codom_string(cls, ob: Union[str, Ob]): return ob.name if isinstance(ob, Ob) else ob class Config: - """pydandic config""" + """pydantic config""" allow_mutation = False @@ -123,7 +123,7 @@ def evaluate_type(cls, ty: Union[str, type]): return _look_up_type(ty) if isinstance(ty, str) else ty class Config: - """pydandic config""" + """pydantic config""" allow_mutation = False json_encoders = { @@ -171,7 +171,7 @@ def codom_string(cls, at: Union[str, AttrType]): return at.name if isinstance(at, AttrType) else at class Config: - """pydandic config""" + """pydantic config""" allow_mutation = False json_encoders = { @@ -193,7 +193,7 @@ class VersionSpec(HashableBaseModel): Catlab: str class Config: - """pydandic config""" + """pydantic config""" allow_mutation = False @@ -215,7 +215,7 @@ class CatlabSchema(HashableBaseModel): version: VersionSpec = Field(default=VERSION_SPEC) class Config: - """pydandic config""" + """pydantic config""" allow_mutation = False json_encoders = {