Skip to content

Commit

Permalink
chore: remove frozen
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 committed Mar 21, 2024
1 parent 8ed8fd2 commit 07d0832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vbl_aquarium/utils/vbl_base_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class VBLBaseModel(BaseModel):
Configured to use PascalCase for field names and be immutable.
"""

model_config = ConfigDict(alias_generator=to_pascal, frozen=True, populate_by_name=True)
model_config = ConfigDict(alias_generator=to_pascal, populate_by_name=True)

def to_string(self) -> str:
return self.model_dump_json(by_alias=True)

0 comments on commit 07d0832

Please sign in to comment.