python: Sort imports in management commands.

This commit is contained in:
Tim Abbott
2017-11-15 15:43:27 -08:00
parent 73a668e7ae
commit f04d6ed19e
55 changed files with 226 additions and 258 deletions

View File

@@ -1,13 +1,13 @@
from typing import Any
from django.conf import settings
from django.core.management.base import BaseCommand
from django.db.utils import IntegrityError
from django.conf import settings
from zproject.backends import ZulipLDAPUserPopulator
from zerver.models import UserProfile
from zerver.lib.logging_util import create_logger
from zerver.models import UserProfile
from zproject.backends import ZulipLDAPUserPopulator
## Setup ##
logger = create_logger(__name__, settings.LDAP_SYNC_LOG_PATH, 'INFO')