1
0
mirror of https://github.com/django/django.git synced 2025-10-27 23:56:08 +00:00

Sorted imports in __init__.py files.

This commit is contained in:
Tim Graham
2015-06-15 14:07:31 -04:00
parent 4a66a69239
commit 7da3923ba0
33 changed files with 189 additions and 173 deletions

View File

@@ -1,2 +1,4 @@
from .config import AppConfig # NOQA
from .registry import apps # NOQA
from .config import AppConfig
from .registry import apps
__all__ = ['AppConfig', 'apps']