Initial isort configuration

Will fail build if imports are not sorted correctly
This commit is contained in:
Martin Whitehouse
2022-07-22 03:26:41 +02:00
parent 12bb68d5ee
commit 25542f929e
57 changed files with 330 additions and 280 deletions

View File

@ -8,12 +8,12 @@ create_usersettings.py - Easy way to create helpdesk-specific settings for
users who don't yet have them.
"""
from django.utils.translation import gettext as _
from django.core.management.base import BaseCommand
from django.contrib.auth import get_user_model
from django.core.management.base import BaseCommand
from django.utils.translation import gettext as _
from helpdesk.models import UserSettings
User = get_user_model()