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