Skip to content

Commit

Permalink
fix enum serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
giancarloromeo committed Jan 28, 2025
1 parent 6e5ae15 commit 5eab207
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def setup_settings(app: web.Application) -> ApplicationSettings:
app[APP_SETTINGS_KEY] = settings
_logger.debug(
"Captured app settings:\n%s",
app[APP_SETTINGS_KEY].model_dump_json(indent=1),
app[APP_SETTINGS_KEY].model_dump_json(indent=1, warnings=False),
)
return settings

Expand Down

0 comments on commit 5eab207

Please sign in to comment.