summaryrefslogtreecommitdiff
path: root/django/apps
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-28 07:35:27 -0500
committerTim Graham <timograham@gmail.com>2015-02-06 08:16:28 -0500
commit0ed7d155635da9f79d4dd67e4889087d3673c6da (patch)
treecf5c59b563f01774f32e20b3af8cb24a387fdc4d /django/apps
parent388d986b8a6bb1363dab9f53ea435dff4dfe92cb (diff)
Sorted imports with isort; refs #23860.
Diffstat (limited to 'django/apps')
-rw-r--r--django/apps/config.py5
-rw-r--r--django/apps/registry.py2
2 files changed, 3 insertions, 4 deletions
diff --git a/django/apps/config.py b/django/apps/config.py
index fd0e2fe78c..76b3014d9d 100644
--- a/django/apps/config.py
+++ b/django/apps/config.py
@@ -1,10 +1,9 @@
-from importlib import import_module
import os
+from importlib import import_module
from django.core.exceptions import AppRegistryNotReady, ImproperlyConfigured
-from django.utils.module_loading import module_has_submodule
from django.utils._os import upath
-
+from django.utils.module_loading import module_has_submodule
MODELS_MODULE_NAME = 'models'
diff --git a/django/apps/registry.py b/django/apps/registry.py
index 9ddd56462a..c64106cd6f 100644
--- a/django/apps/registry.py
+++ b/django/apps/registry.py
@@ -1,7 +1,7 @@
-from collections import Counter, defaultdict, OrderedDict
import sys
import threading
import warnings
+from collections import Counter, OrderedDict, defaultdict
from django.core.exceptions import AppRegistryNotReady, ImproperlyConfigured
from django.utils import lru_cache