From 3b24a3fa337bedc11352a17952cb9c3f77f9b9f2 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Wed, 21 Dec 2022 11:41:29 +0100 Subject: Removed unnecessary commas in tests. --- tests/lookup/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/lookup') diff --git a/tests/lookup/tests.py b/tests/lookup/tests.py index 10e4c3d1fe..53eb76d174 100644 --- a/tests/lookup/tests.py +++ b/tests/lookup/tests.py @@ -1218,7 +1218,7 @@ class LookupTests(TestCase): def test_exact_exists(self): qs = Article.objects.filter(pk=OuterRef("pk")) - seasons = Season.objects.annotate(pk_exists=Exists(qs),).filter( + seasons = Season.objects.annotate(pk_exists=Exists(qs)).filter( pk_exists=Exists(qs), ) self.assertCountEqual(seasons, Season.objects.all()) -- cgit v1.2.1