From e82d830410aaff3df40f28860f707ebe25b71ef9 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 21 Feb 2022 21:02:45 +0100 Subject: [PATCH] fix(app): Fix import_name for flask application --- flaschengeist/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flaschengeist/app.py b/flaschengeist/app.py index 86d35a6..1ab5976 100644 --- a/flaschengeist/app.py +++ b/flaschengeist/app.py @@ -96,7 +96,7 @@ def install_all(): def create_app(test_config=None): - app = Flask(__name__) + app = Flask("flaschengeist") app.json_encoder = CustomJSONEncoder CORS(app)