Rerun isort

This commit is contained in:
Sonny Bakker 2022-05-26 12:00:20 +02:00
parent e5220eb9a5
commit c48de9c6e1
2 changed files with 4 additions and 4 deletions

View file

@ -18,11 +18,11 @@ AXES_FAILURE_LIMIT = 50
AXES_COOLOFF_TIME = None
try:
from .local import * # noqa
# Optionally use sentry integration
from sentry_sdk import init as sentry_init
from .local import * # noqa
SENTRY_CONFIG.update({"release": VERSION})
sentry_init(**SENTRY_CONFIG)

View file

@ -45,11 +45,11 @@ AXES_COOLOFF_TIME = None
CELERY_BROKER_URL = "amqp://guest:guest@rabbitmq:5672//"
try:
from .local import * # noqa
# Optionally use sentry integration
from sentry_sdk import init as sentry_init
from .local import * # noqa
SENTRY_CONFIG.update({"release": VERSION, "environment": ENVIRONMENT})
sentry_init(**SENTRY_CONFIG)