Skip to content

Commit

Permalink
Fix env config loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosenpfand committed Aug 2, 2023
1 parent dba7cf6 commit 51aee3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def create_app(
with app.app_context():
app.config.from_object(config)
app.config.from_envvar("APPLICATION_SETTINGS", silent=True)
app.config.from_prefixed_env(loads=str)
app.config.from_prefixed_env()

# Register error handlers
app.register_error_handler(404, page_not_found)
Expand Down

0 comments on commit 51aee3a

Please sign in to comment.