From dd0755f87cef1e2fe2b076c902df36312201bb1c Mon Sep 17 00:00:00 2001 From: WangErXiao <863579016@qq.com> Date: Wed, 8 Jan 2025 09:41:29 +0800 Subject: [PATCH] Remove the duplicate imports of MultiModalKwargs and PlaceholderRange, as they are only used for type hints. Signed-off-by: WangErXiao <863579016@qq.com> Remove the duplicate imports of MultiModalKwargs and PlaceholderRange in scheduler.py, as they are only used for type hints. --- vllm/v1/core/scheduler.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vllm/v1/core/scheduler.py b/vllm/v1/core/scheduler.py index baaf3329dc79f..b26716f5c02e6 100644 --- a/vllm/v1/core/scheduler.py +++ b/vllm/v1/core/scheduler.py @@ -5,8 +5,6 @@ from vllm.config import CacheConfig, LoRAConfig, SchedulerConfig from vllm.logger import init_logger -from vllm.multimodal import MultiModalKwargs -from vllm.multimodal.base import PlaceholderRange from vllm.sampling_params import SamplingParams from vllm.v1.core.encoder_cache_manager import EncoderCacheManager from vllm.v1.core.kv_cache_manager import KVCacheManager