File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
vllm/distributed/kv_transfer/kv_connector/v1 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ def __init__(
3636 ):
3737 ## REMOVE BEFORE MERGE (YIFAN): this is temporary workaround to work with
3838 # LMCache. Remove this once having LMCache-side support for new interfaces.
39- vllm_config .kv_cache_config = kv_cache_config
39+ vllm_config .kv_cache_config = kv_cache_config # type: ignore[attr-defined]
4040 super ().__init__ (
4141 vllm_config = vllm_config , role = role , kv_cache_config = kv_cache_config
4242 )
43- assert vllm_config .kv_transfer_config is not None
44- use_native = vllm_config .kv_transfer_config .get_from_extra_config (
43+ assert vllm_config .kv_transfer_config is not None # type: ignore[attr-defined]
44+ use_native = vllm_config .kv_transfer_config .get_from_extra_config ( # type: ignore[attr-defined]
4545 "use_native" , False
4646 )
4747 if use_native :
You can’t perform that action at this time.
0 commit comments