Skip to content
Snippets Groups Projects
Commit 9cc8c514 authored by David Trattnig's avatar David Trattnig
Browse files

Fix Flask app name.

parent d7f7a58f
No related branches found
No related tags found
No related merge requests found
...@@ -45,7 +45,7 @@ def configure_flask(app): ...@@ -45,7 +45,7 @@ def configure_flask(app):
return app return app
api = connexion.App("engine-api", specification_dir='src/rest/swagger') api = connexion.App(__name__, specification_dir='rest/swagger')
api.add_api('swagger.yaml', arguments={'title': 'AURA Engine API'}, pythonic_params=True) api.add_api('swagger.yaml', arguments={'title': 'AURA Engine API'}, pythonic_params=True)
app = configure_flask(api.app) app = configure_flask(api.app)
db = SQLAlchemy(app) db = SQLAlchemy(app)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment