Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mpnowacki-reef committed Aug 20, 2024
1 parent 148447d commit daf2b91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
from functools import wraps

import environ
import structlog

{% if cookiecutter.use_celery == "y" -%}
# from celery.schedules import crontab
{% endif %}
{%- if cookiecutter.use_allauth == "y" -%}
from django.urls import reverse_lazy
{% endif -%}
import structlog

root = environ.Path(__file__) - 2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
path("healthcheck/", include("health_check.urls")),
{%- endif %}
{%- if cookiecutter.use_allauth == "y" %}
path('accounts/', include('allauth.urls')),
path("accounts/", include("allauth.urls")),
{%- else %}
path("", include("django.contrib.auth.urls")),
{%- endif %}
Expand Down

0 comments on commit daf2b91

Please sign in to comment.