Lint production.py

This commit is contained in:
Andrew Chen Wang 2021-04-30 12:50:35 -04:00 committed by GitHub
parent 30362312aa
commit 8b35c83500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -353,7 +353,12 @@ sentry_logging = LoggingIntegration(
) )
{%- if cookiecutter.use_celery == 'y' %} {%- if cookiecutter.use_celery == 'y' %}
integrations = [sentry_logging, DjangoIntegration(), CeleryIntegration(), RedisIntegration()] integrations = [
sentry_logging,
DjangoIntegration(),
CeleryIntegration(),
RedisIntegration(),
]
{% else %} {% else %}
integrations = [sentry_logging, DjangoIntegration(), RedisIntegration()] integrations = [sentry_logging, DjangoIntegration(), RedisIntegration()]
{% endif -%} {% endif -%}