From a50d5b177f323cbafdc1aad99ad0323d5c92ee7f Mon Sep 17 00:00:00 2001 From: Dmitry Date: Thu, 7 Oct 2021 14:41:08 +0300 Subject: [PATCH] fix init index_content --- app/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/app.py b/app/app.py index cc0fd04..36040cb 100644 --- a/app/app.py +++ b/app/app.py @@ -15,6 +15,8 @@ def create_app() -> Flask: add_api_resources(api) cors = CORS(app, resources={r"/api/*": {"origins": "*"}}) + index_content: str = "" + @app.route('/') def index(): return index_content