From 00666566c20b3c5b63e6078acc5cd533e8a1f191 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Tue, 5 Mar 2024 18:54:04 -0800 Subject: [PATCH] (fix) chore --- litellm/proxy/utils.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 9e3a374ecac..6946904c75c 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -921,10 +921,9 @@ class PrismaClient: return response elif table_name == "team": if query_type == "find_unique": - response = None - # response = await self.db.litellm_teamtable.find_unique( - # where={"team_id": team_id} # type: ignore - # ) + response = await self.db.litellm_teamtable.find_unique( + where={"team_id": team_id} # type: ignore + ) elif query_type == "find_all" and user_id is not None: response = await self.db.litellm_teamtable.find_many( where={