lint(minor): fix import order
This commit is contained in:
parent
c38012f147
commit
fb8ccc0283
|
@ -15,9 +15,9 @@ from django.utils.translation import gettext as _
|
|||
from model_utils.managers import InheritanceManager
|
||||
from structlog import get_logger
|
||||
|
||||
from passbook.policy.exceptions import PolicyException
|
||||
from passbook.core.signals import password_changed
|
||||
from passbook.lib.models import CreatedUpdatedModel, UUIDModel
|
||||
from passbook.policy.exceptions import PolicyException
|
||||
|
||||
LOGGER = get_logger(__name__)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ from typing import Any, Dict
|
|||
|
||||
from structlog import get_logger
|
||||
|
||||
from passbook.core.models import Policy, User, PolicyResult
|
||||
from passbook.core.models import Policy, PolicyResult, User
|
||||
from passbook.policy.exceptions import PolicyException
|
||||
|
||||
LOGGER = get_logger(__name__)
|
||||
|
|
Reference in New Issue