From 889ebb26387f62e8d511c0536016905714cd20a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Lucchesi?= Date: Mon, 28 Apr 2025 14:45:42 +0200 Subject: [PATCH] [Misc] Minor typo/grammar in `platforms/interface.py` (#17307) Signed-off-by: NickLucche --- vllm/platforms/interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vllm/platforms/interface.py b/vllm/platforms/interface.py index a60e128b550ff..c5555aba1a3e3 100644 --- a/vllm/platforms/interface.py +++ b/vllm/platforms/interface.py @@ -410,8 +410,8 @@ class Platform: if device is not None and hasattr(device, key): return getattr(device, key) else: - logger.warning("Current platform %s doesn't has '%s' attribute.", - self.device_name, key) + logger.warning("Current platform %s does not have '%s'" \ + " attribute.", self.device_name, key) return None @classmethod