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