From c28e206fc636e2d157b1fa5c69f2557e72520a40 Mon Sep 17 00:00:00 2001 From: Nilanjan De Date: Mon, 21 Apr 2025 21:56:02 +0400 Subject: [PATCH] chore: lint --- litellm/proxy/spend_tracking/spend_management_endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/spend_tracking/spend_management_endpoints.py b/litellm/proxy/spend_tracking/spend_management_endpoints.py index 5ff8d23e9f..8a064fa3ec 100644 --- a/litellm/proxy/spend_tracking/spend_management_endpoints.py +++ b/litellm/proxy/spend_tracking/spend_management_endpoints.py @@ -2401,7 +2401,7 @@ async def global_spend_keys( try: limit = int(limit) if limit < 1: - raise ValueError(f"Limit must be greater than 0") + raise ValueError("Limit must be greater than 0") sql_query = """SELECT * FROM "Last30dKeysBySpend" LIMIT $1 ;""" response = await prisma_client.db.query_raw(sql_query, limit) except ValueError as e: