From 50b444be89729bafae68213feaab5ec0f7b7c428 Mon Sep 17 00:00:00 2001 From: creyD <15138480+creyD@users.noreply.github.com> Date: Fri, 14 Feb 2025 09:10:55 +0000 Subject: [PATCH] Adjusted files for isort & autopep --- creyPY/fastapi/testing_unit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/creyPY/fastapi/testing_unit.py b/creyPY/fastapi/testing_unit.py index 42ddc94..5cc1a39 100644 --- a/creyPY/fastapi/testing_unit.py +++ b/creyPY/fastapi/testing_unit.py @@ -140,7 +140,7 @@ class AbstractTestAPI(unittest.IsolatedAsyncioTestCase): pagination: bool = True, id_field: str = "id", created_at_check: bool = True, - patch: dict| None = None, + patch: dict | None = None, ): # GET LIST re = await self.get(url) @@ -171,7 +171,7 @@ class AbstractTestAPI(unittest.IsolatedAsyncioTestCase): input_obj[key] = value re = await self.patch(f"{url}{obj_id}/", obj=input_obj) for key, value in patch.items(): - self.assertEqual(re[key],value) + self.assertEqual(re[key], value) # GET LIST re = await self.get(url)