Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Hadley committed Apr 11, 2023
1 parent e28ebd2 commit 27aa187
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 82 deletions.
4 changes: 2 additions & 2 deletions paramdb/_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def commit(self, message: str, data: T) -> None:
with self._Session.begin() as session:
session.add(
_Snapshot(
message=message, # type: ignore
data=_compress(json.dumps(data, default=_to_dict)), # type: ignore
message=message,
data=_compress(json.dumps(data, default=_to_dict)),
)
)

Expand Down
Loading

0 comments on commit 27aa187

Please sign in to comment.