Skip to content

Commit

Permalink
pydandic -> pydantic
Browse files Browse the repository at this point in the history
  • Loading branch information
olynch committed Nov 1, 2023
1 parent e52353e commit 53b161d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/acsets/acsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 = {
Expand Down Expand Up @@ -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 = {
Expand All @@ -193,7 +193,7 @@ class VersionSpec(HashableBaseModel):
Catlab: str

class Config:
"""pydandic config"""
"""pydantic config"""

allow_mutation = False

Expand All @@ -215,7 +215,7 @@ class CatlabSchema(HashableBaseModel):
version: VersionSpec = Field(default=VERSION_SPEC)

class Config:
"""pydandic config"""
"""pydantic config"""

allow_mutation = False
json_encoders = {
Expand Down

0 comments on commit 53b161d

Please sign in to comment.