From 3b56ce02980b08c1e37e76faa8ab26709f5ea7a8 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 19:31:28 +0000 Subject: [PATCH] style: format litellm/proxy/utils.py Co-Authored-By: Ishaan Jaffer <155045088+ishaan-berri@users.noreply.github.com> --- litellm/proxy/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 3055c31367e..4c0123a03d6 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -5195,7 +5195,9 @@ class ProxyUpdateSpend: else: for j in range(0, len(logs_to_process), BATCH_SIZE): batch = logs_to_process[j : j + BATCH_SIZE] - batch_with_dates = [prisma_client.jsonify_object(_strip_null_bytes(entry)) for entry in batch] + batch_with_dates = [ + prisma_client.jsonify_object(_strip_null_bytes(entry)) for entry in batch + ] await _create_spend_logs_with_poison_isolation( SpendLogsRepository(prisma_client), batch_with_dates,