From 92cc088ace24adacb000839ebc590c4f5ac2e1ac Mon Sep 17 00:00:00 2001 From: Alex Morega Date: Tue, 17 Sep 2024 19:30:45 +0300 Subject: [PATCH] Fix formatting --- tests/test_interfaces.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_interfaces.py b/tests/test_interfaces.py index f2e97c44..6922e35e 100644 --- a/tests/test_interfaces.py +++ b/tests/test_interfaces.py @@ -35,7 +35,9 @@ def test_schema_with_default_page_interface(self): results["data"]["__type"]["interfaces"], [{"name": "PageInterface"}] ) - @override_settings(GRAPPLE={"PAGE_INTERFACE": "testapp.interfaces.CustomPageInterface"}) + @override_settings( + GRAPPLE={"PAGE_INTERFACE": "testapp.interfaces.CustomPageInterface"} + ) def test_get_page_interface_with_custom_page_interface(self): self.assertIs(get_page_interface(), CustomPageInterface)