Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyhedral committed Oct 13, 2021
1 parent 911ac7a commit 2e47dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sweetrpg_model_core/schema/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def handle_dates(self, in_data, **kwargs):
@post_load
def make_object(self, data, **kwargs):
logging.info("data: %s, kwargs: %s", data, kwargs)
print(data) # TODO: remove
print(data, kwargs) # TODO: remove
return self.model_class(**data)

id = fields.Str() # as_string=True, dump_only=True)
Expand Down

0 comments on commit 2e47dd5

Please sign in to comment.