From 0b6501a5c3b22b3847aacfd26e29a12df7c2e786 Mon Sep 17 00:00:00 2001 From: dorsha Date: Tue, 25 Oct 2022 16:27:42 +0300 Subject: [PATCH] Fix lint --- tests/test_saml.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_saml.py b/tests/test_saml.py index e79b1d47..50648ce8 100644 --- a/tests/test_saml.py +++ b/tests/test_saml.py @@ -56,7 +56,9 @@ def test_saml_start(self): "Content-Type": "application/json", "Authorization": f"Bearer {self.dummy_project_id}", }, - data=json.dumps({"tenant": "tenant1", "redirectURL": "http://dummy.com"}), + data=json.dumps( + {"tenant": "tenant1", "redirectURL": "http://dummy.com"} + ), allow_redirects=False, verify=True, )