1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

[1.7.x] Fixed several flake8 errors

Backport of d17a4cb037 from master
This commit is contained in:
Alex Gaynor
2014-06-15 20:45:15 -04:00
committed by Tim Graham
parent a81282a512
commit 39e2ad4532
3 changed files with 7 additions and 7 deletions

View File

@@ -237,8 +237,8 @@ class OperationTests(MigrationTestBase):
operation = migrations.CreateModel(
"ProxyPony",
[],
options = {"proxy": True},
bases = ("test_crprmo.Pony", ),
options={"proxy": True},
bases=("test_crprmo.Pony", ),
)
new_state = project_state.clone()
operation.state_forwards("test_crprmo", new_state)