From f9f9625aa8fa4a9bb07c209559ef38c3503ca599 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 13 Aug 2025 15:09:01 -0400 Subject: [PATCH] return type --- app/api/routes/routes.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/api/routes/routes.py b/app/api/routes/routes.py index 9bc1820..f9e2d03 100644 --- a/app/api/routes/routes.py +++ b/app/api/routes/routes.py @@ -302,8 +302,9 @@ def common_practice(): # Call the dashboard service data = request.get_json() logger.info(f"Route common Practice Data ==>>>> {data}") - result = CommonDataService.available_practices(data) - return jsonify(result) + response = CommonDataService.available_practices(data) + return response + # return jsonify(result) #=================================================== CommonDataService