From 51aee3a7cc151de1b595f5ad878c9a19a6bb75cd Mon Sep 17 00:00:00 2001 From: Dosenpfand Date: Wed, 2 Aug 2023 09:03:14 +0200 Subject: [PATCH] Fix env config loading --- app/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index feb432f..75393ca 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -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)