From b377f8f883b098e6ae0b18c9b42b77116054ce82 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Mon, 7 Nov 2022 15:15:19 +0100 Subject: [PATCH] chore: Remove unused imports --- api/funkwhale_api/subsonic/authentication.py | 1 - api/funkwhale_api/users/models.py | 1 - 2 files changed, 2 deletions(-) diff --git a/api/funkwhale_api/subsonic/authentication.py b/api/funkwhale_api/subsonic/authentication.py index 5e7fe9f78..195f43d62 100644 --- a/api/funkwhale_api/subsonic/authentication.py +++ b/api/funkwhale_api/subsonic/authentication.py @@ -3,7 +3,6 @@ import hashlib from rest_framework import authentication, exceptions -from funkwhale_api.common import authentication as common_authentication from funkwhale_api.users.models import User diff --git a/api/funkwhale_api/users/models.py b/api/funkwhale_api/users/models.py index 98a5ffa73..818592678 100644 --- a/api/funkwhale_api/users/models.py +++ b/api/funkwhale_api/users/models.py @@ -16,7 +16,6 @@ from django.urls import reverse from django.utils import timezone from django.utils.translation import ugettext_lazy as _ -from allauth.account.models import EmailAddress from django_auth_ldap.backend import populate_user as ldap_populate_user from oauth2_provider import models as oauth2_models from oauth2_provider import validators as oauth2_validators