Removed unused imports.

This commit is contained in:
Tim Graham 2015-03-20 17:57:11 -04:00
parent 6770b7ecd2
commit a3e75f6bed
2 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import datetime
import socket
from django.core.mail import send_mail
from django.core.management.base import BaseCommand, CommandError
from django.core.management.base import BaseCommand
class Command(BaseCommand):

View File

@ -2,7 +2,6 @@ from __future__ import unicode_literals
from django.core import mail
from django.core.management import call_command
from django.core.management.base import CommandError
from django.test import SimpleTestCase