From 6cd4456df3d432c604bf8ca70aded90263738817 Mon Sep 17 00:00:00 2001 From: Stefan Date: Tue, 24 Dec 2024 11:37:01 +0100 Subject: [PATCH] :rotating_light: FIX black ci fail --- src/sdg/organisaties/tests/test_notificaties.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sdg/organisaties/tests/test_notificaties.py b/src/sdg/organisaties/tests/test_notificaties.py index a3f554ed..72153c86 100644 --- a/src/sdg/organisaties/tests/test_notificaties.py +++ b/src/sdg/organisaties/tests/test_notificaties.py @@ -42,7 +42,9 @@ def test_notifications_list(self): 5, product=specific_product, publicatie_datum=now() ) - url = reverse("organisaties:notificaties:list", kwargs={"pk": self.lokale_overheid.pk}) + url = reverse( + "organisaties:notificaties:list", kwargs={"pk": self.lokale_overheid.pk} + ) response = self.app.get(url) notifications = response.pyquery("#notifications tbody tr")