From c5eb280bd94843341c809edb925df07a5c12b51d Mon Sep 17 00:00:00 2001 From: Teri-anric <2005ahi2005@gmail.com> Date: Sat, 26 Oct 2024 20:03:29 +0000 Subject: [PATCH] pylint fix --- web_app/db/acrud.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web_app/db/acrud.py b/web_app/db/acrud.py index 78669079..93e7724c 100644 --- a/web_app/db/acrud.py +++ b/web_app/db/acrud.py @@ -92,7 +92,9 @@ async def delete_object( self, model: Type[ModelType] = None, obj_id: uuid = None ) -> None: """ - Delete an object by its ID from the database asynchronously. Rolls back if the operation fails. + Delete an object by its ID from the database asynchronously. + Rolls back if the operation fails. + :param model: type[Base] = None :param obj_id: uuid = None :return: None