Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Oct 15, 2024
1 parent e3bb9b5 commit 2072491
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
3 changes: 1 addition & 2 deletions uniticket/accounts/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@

CHANGE_EMAIL_TOKEN_LIFE = getattr(settings, 'CHANGE_EMAIL_TOKEN_LIFE', 30)

SAFE_URL_PATHS = getattr(settings, 'SAFE_URL_PATHS', [reverse("accounts:change_data"),
reverse("accounts:confirm_email")])
SAFE_URL_PATHS = getattr(settings, 'SAFE_URL_PATHS', [])
SAFE_URL_APPS = getattr(settings, 'SAFE_URL_APPS', ['admin', 'api_rest'])
4 changes: 0 additions & 4 deletions uniticket/accounts/views.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
import copy
import base64
import zoneinfo

from django.conf import settings
from django.contrib.auth import get_user_model
from django.contrib import messages
Expand Down

0 comments on commit 2072491

Please sign in to comment.