Commit d015c9d1 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

Fixed several flake8 errors

parent 2cee1d46
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -142,7 +142,6 @@ class OperationTests(OperationTestBase):
    both forwards and backwards.
    """


    def test_create_model(self):
        """
        Tests the CreateModel operation.
+0 −1
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@ from django.db import connection, DatabaseError, IntegrityError, OperationalErro
from django.db.models.fields import IntegerField, TextField, CharField, SlugField, BooleanField, BinaryField
from django.db.models.fields.related import ManyToManyField, ForeignKey
from django.db.transaction import atomic
from django.utils import six
from .models import (Author, AuthorWithM2M, Book, BookWithLongName,
    BookWithSlug, BookWithM2M, Tag, TagIndexed, TagM2MTest, TagUniqueRename,
    UniqueTest, Thing, TagThrough, BookWithM2MThrough, AuthorTag, AuthorWithM2MThrough)