From 6dbae81c3818cbc2e1090cf9afd0aaf40b1dd350 Mon Sep 17 00:00:00 2001 From: DarkLight1337 Date: Mon, 23 Dec 2024 18:21:38 +0000 Subject: [PATCH] Fix doc failure Signed-off-by: DarkLight1337 --- vllm/multimodal/inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/multimodal/inputs.py b/vllm/multimodal/inputs.py index 151cf56db1e3b..ebaaffe7ea4a9 100644 --- a/vllm/multimodal/inputs.py +++ b/vllm/multimodal/inputs.py @@ -127,7 +127,7 @@ def nested_tensors_equal(a: NestedTensors, b: NestedTensors) -> bool: return a == b -BatchedTensorInputs: TypeAlias = dict[str, NestedTensors] +BatchedTensorInputs: TypeAlias = Mapping[str, NestedTensors] """ A dictionary containing nested tensors which have been batched via :meth:`MultiModalKwargs.batch`.