1
0
mirror of https://github.com/django/django.git synced 2025-10-30 17:16:10 +00:00

[1.7.x] Fixed several flake8 errors

Backport of d015c9d11c from master
This commit is contained in:
Alex Gaynor
2014-06-18 07:47:13 -07:00
committed by Tim Graham
parent 819d5f0c89
commit 1d9f308fa1
2 changed files with 2 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ class OperationTestBase(MigrationTestBase):
("pink", models.IntegerField(default=3)),
("weight", models.FloatField()),
],
options = {
options={
"swappable": "TEST_SWAP_MODEL",
},
)]
@@ -142,7 +142,6 @@ class OperationTests(OperationTestBase):
both forwards and backwards.
"""
def test_create_model(self):
"""
Tests the CreateModel operation.
@@ -1161,7 +1160,7 @@ class SwappableOperationTests(OperationTestBase):
("id", models.AutoField(primary_key=True)),
("pink", models.IntegerField(default=1)),
],
options = {
options={
"swappable": "TEST_SWAP_MODEL",
},
)