Files
notifications-admin/application.py
David McDonald 3e80ba4734 Fix flake8 and isort errors
Note, isort now has default behaviour of searching recursively so we no
longer need the `-rc` flag
2021-03-08 18:48:56 +00:00

8 lines
105 B
Python

from flask import Flask
from app import create_app
application = Flask('app')
create_app(application)