diff --git a/src/anki_creator_flask/__init__.py b/src/anki_creator_flask/__init__.py index 3113118..7f3e200 100644 --- a/src/anki_creator_flask/__init__.py +++ b/src/anki_creator_flask/__init__.py @@ -30,7 +30,8 @@ def create_app(): app.config.from_pyfile("config.py", silent=True) - for blueprint in (homescreen, mainapp): + # for blueprint in (homescreen, mainapp): + for blueprint in (homescreen,): app.register_blueprint(blueprint) return app