Commit 1d9f308f authored by Alex Gaynor's avatar Alex Gaynor Committed by Tim Graham
Browse files

[1.7.x] Fixed several flake8 errors

Backport of d015c9d1 from master
parent 819d5f0c
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)