fix linting

This commit is contained in:
Ishaan Jaff 2024-09-16 18:07:48 -07:00
parent 3b034224a0
commit 9f5a33015f

View file

@ -1313,7 +1313,7 @@ class PrismaClient:
detail={"error": f"No token passed in. Token={token}"}, detail={"error": f"No token passed in. Token={token}"},
) )
response = await self.db.litellm_verificationtoken.find_unique( response = await self.db.litellm_verificationtoken.find_unique(
where={"token": hashed_token}, where={"token": hashed_token}, # type: ignore
include={"litellm_budget_table": True}, include={"litellm_budget_table": True},
) )
if response is not None: if response is not None: