mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed all E251 violations
This commit is contained in:
parent
c347f78cc1
commit
f67e18f39e
14 changed files with 37 additions and 37 deletions
|
|
@ -303,7 +303,7 @@ class OperationTests(MigrationTestBase):
|
|||
operation = migrations.RunSQL(
|
||||
"CREATE TABLE i_love_ponies (id int, special_thing int)",
|
||||
"DROP TABLE i_love_ponies",
|
||||
state_operations = [migrations.CreateModel("SomethingElse", [("id", models.AutoField(primary_key=True))])],
|
||||
state_operations=[migrations.CreateModel("SomethingElse", [("id", models.AutoField(primary_key=True))])],
|
||||
)
|
||||
# Test the state alteration
|
||||
new_state = project_state.clone()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue