Skip to content

Commit b0fb7c1

Browse files
committed
fix linting
1 parent 0d5188b commit b0fb7c1

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

litellm/batches/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import httpx
2020
from openai.types.batch import BatchRequestCounts
21-
from openai.types.batch import Metadata as BatchMetadata
2221

2322
import litellm
2423
from litellm._logging import verbose_logger

litellm/llms/bedrock/chat/invoke_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ def translate_thinking_blocks(
12461246
thinking_blocks_list.append(_thinking_block)
12471247
return thinking_blocks_list
12481248

1249-
def converse_chunk_parser(self, chunk_data: dict) -> ModelResponseStream:
1249+
def converse_chunk_parser(self, chunk_data: dict) -> ModelResponseStream: # noqa: PLR0915
12501250
try:
12511251
# Capture the conversationId from the first messageStart event
12521252
# and use it as the consistent ID for all subsequent chunks.

litellm/proxy/batches_endpoints/endpoints.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
)
2323
from litellm.proxy.openai_files_endpoints.common_utils import (
2424
_is_base64_encoded_unified_file_id,
25-
convert_b64_uid_to_unified_uid,
2625
get_batch_id_from_unified_batch_id,
2726
get_model_id_from_unified_batch_id,
2827
get_models_from_unified_file_id,

litellm/router.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ def _initialize_core_endpoints(self):
835835
litellm.acancel_batch, call_type="acancel_batch"
836836
)
837837

838-
def _initialize_specialized_endpoints(self):
838+
def _initialize_specialized_endpoints(self): # noqa: PLR0915
839839
"""Helper to initialize specialized router endpoints (vector store, OCR, search, video, container)."""
840840
from litellm.vector_stores.main import acreate, asearch, create, search
841841

0 commit comments

Comments
 (0)