From 6c1fe1dec1aab44a1cb912420abe18251acc7b28 Mon Sep 17 00:00:00 2001 From: Ben Cail Date: Wed, 2 Oct 2024 17:15:09 -0400 Subject: [PATCH] fix flake8 --- tests/migrations/test_autodetector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/migrations/test_autodetector.py b/tests/migrations/test_autodetector.py index aa0748a19f..f09ed6d6a5 100644 --- a/tests/migrations/test_autodetector.py +++ b/tests/migrations/test_autodetector.py @@ -1615,7 +1615,7 @@ class AutodetectorTests(BaseAutodetectorTests): ("pkfield", models.IntegerField(primary_key=False)), ], ) - changes = self.get_changes([initial_state], [updated_state]) + self.get_changes([initial_state], [updated_state]) @mock.patch( "django.db.migrations.questioner.MigrationQuestioner.ask_not_null_alteration",