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

[1.11.x] Removed unused variables that are overwritten.

Backport of ebf34c3cdc from master
This commit is contained in:
Mads Jensen
2017-01-25 15:14:05 +01:00
committed by Tim Graham
parent a69fc396e4
commit c94cb4f865
12 changed files with 4 additions and 16 deletions

View File

@@ -77,7 +77,7 @@ class MigrationTestBase(TransactionTestCase):
),
)
def assertFKNotExists(self, table, columns, to, value=True):
def assertFKNotExists(self, table, columns, to):
return self.assertFKExists(table, columns, to, False)
@contextmanager