4
0

rewritten for mules
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2020-04-20 22:53:12 +02:00
parent f4e880cb0f
commit 57a46dc259
8 changed files with 112 additions and 90 deletions

View File

@@ -11,7 +11,6 @@ from utils import register_all_error_handlers
# import views
from views import ClassifyView
# Setup sentry
SENTRY_DSN = os.environ.get("SENTRY_DSN")
if SENTRY_DSN:
@@ -36,7 +35,6 @@ register_all_error_handlers(app)
for view in [ClassifyView]:
view.register(app, trailing_slash=False)
# start debugging if needed
if __name__ == "__main__":
app.run(debug=True)