"""Application.""" from raven.contrib import flask from product_film import api from product_film import config from product_film import handlers # noqa if config.SENTRY: api.app.config['SENTRY_DSN'] = config.SENTRY flask.Sentry(api.app) app = api.app