Skip to content

Commit 344599b

Browse files
committed
Fix black formatting for import statement
Signed-off-by: Keyu Chen <54015474+keyuchen21@users.noreply.github.com>
1 parent 04ee42d commit 344599b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/vllm_router/services/batch_service/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ def initialize_batch_processor(
66
batch_processor_name: str, storage_path: str, storage: Storage
77
) -> BatchProcessor:
88
if batch_processor_name == "local":
9-
from vllm_router.services.batch_service.local_processor import LocalBatchProcessor
9+
from vllm_router.services.batch_service.local_processor import (
10+
LocalBatchProcessor,
11+
)
1012

1113
return LocalBatchProcessor(storage_path, storage)
1214
else:

0 commit comments

Comments
 (0)