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 985f348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vbl_aquarium/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.9"
__version__ = "0.0.10"
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 985f348

Please sign in to comment.