From c3f538c2f6d866d7be34a75abc32f49d2661910a Mon Sep 17 00:00:00 2001 From: Siddhant Rai Date: Thu, 19 Dec 2024 09:59:38 +0530 Subject: [PATCH] fix: merge errors --- application/api/user/routes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/api/user/routes.py b/application/api/user/routes.py index 05256f28..bcbc2d95 100644 --- a/application/api/user/routes.py +++ b/application/api/user/routes.py @@ -1863,6 +1863,7 @@ class CreateTool(Resource): ), }, ) + ) @api.doc(description="Create a new tool") def post(self): data = request.get_json() @@ -2005,6 +2006,7 @@ class UpdateToolActions(Resource): ), }, ) + ) @api.doc(description="Update the actions of a tool") def post(self): data = request.get_json()