diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-01-19 18:35:56 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-01-19 18:35:56 +0000 |
commit | be9fcc522a0e8dd95167236b30deb936ca6a4721 (patch) | |
tree | e1f6c7a78e49b8ee28315b188148f35a02053996 /core/management/commands | |
parent | 939d3970aad3d1e5cf0de4e7ed09bed78e0404bb (diff) | |
download | troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.gz troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.bz2 troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.zip |
sort imports using isort. tested.
Diffstat (limited to 'core/management/commands')
-rw-r--r-- | core/management/commands/dummycmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/management/commands/dummycmd.py b/core/management/commands/dummycmd.py index 3628cf8..6e13011 100644 --- a/core/management/commands/dummycmd.py +++ b/core/management/commands/dummycmd.py @@ -1,10 +1,10 @@ import os from optparse import make_option -from django.db import connection +from django.contrib.auth.models import User from django.core import management from django.core.management.base import BaseCommand, CommandError -from django.contrib.auth.models import User +from django.db import connection import settings |