Kaydet (Commit) d015c9d1 authored tarafından Alex Gaynor's avatar Alex Gaynor

Fixed several flake8 errors

üst 2cee1d46
...@@ -83,7 +83,7 @@ class OperationTestBase(MigrationTestBase): ...@@ -83,7 +83,7 @@ class OperationTestBase(MigrationTestBase):
("pink", models.IntegerField(default=3)), ("pink", models.IntegerField(default=3)),
("weight", models.FloatField()), ("weight", models.FloatField()),
], ],
options = { options={
"swappable": "TEST_SWAP_MODEL", "swappable": "TEST_SWAP_MODEL",
}, },
)] )]
...@@ -142,7 +142,6 @@ class OperationTests(OperationTestBase): ...@@ -142,7 +142,6 @@ class OperationTests(OperationTestBase):
both forwards and backwards. both forwards and backwards.
""" """
def test_create_model(self): def test_create_model(self):
""" """
Tests the CreateModel operation. Tests the CreateModel operation.
...@@ -1161,7 +1160,7 @@ class SwappableOperationTests(OperationTestBase): ...@@ -1161,7 +1160,7 @@ class SwappableOperationTests(OperationTestBase):
("id", models.AutoField(primary_key=True)), ("id", models.AutoField(primary_key=True)),
("pink", models.IntegerField(default=1)), ("pink", models.IntegerField(default=1)),
], ],
options = { options={
"swappable": "TEST_SWAP_MODEL", "swappable": "TEST_SWAP_MODEL",
}, },
) )
......
...@@ -7,7 +7,6 @@ from django.db import connection, DatabaseError, IntegrityError, OperationalErro ...@@ -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 import IntegerField, TextField, CharField, SlugField, BooleanField, BinaryField
from django.db.models.fields.related import ManyToManyField, ForeignKey from django.db.models.fields.related import ManyToManyField, ForeignKey
from django.db.transaction import atomic from django.db.transaction import atomic
from django.utils import six
from .models import (Author, AuthorWithM2M, Book, BookWithLongName, from .models import (Author, AuthorWithM2M, Book, BookWithLongName,
BookWithSlug, BookWithM2M, Tag, TagIndexed, TagM2MTest, TagUniqueRename, BookWithSlug, BookWithM2M, Tag, TagIndexed, TagM2MTest, TagUniqueRename,
UniqueTest, Thing, TagThrough, BookWithM2MThrough, AuthorTag, AuthorWithM2MThrough) UniqueTest, Thing, TagThrough, BookWithM2MThrough, AuthorTag, AuthorWithM2MThrough)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment