Skip to content

Commit

Permalink
fix: log placeholder (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl authored Jan 7, 2024
1 parent 9cdc0b1 commit 3cc6cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serializable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def from_json(cls: Type[_T], data: Dict[str, Any]) -> Optional[_T]:
f'There was an AttributeError deserializing JSON to {cls} the Property {prop_info}: {e}'
) from e

_logger.debug('Creating $s from %s', cls, _data)
_logger.debug('Creating %s from %s', cls, _data)

return cls(**_data)

Expand Down

0 comments on commit 3cc6cad

Please sign in to comment.