Skip to content

Commit 889ebb2

Browse files
authored
[Misc] Minor typo/grammar in platforms/interface.py (#17307)
Signed-off-by: NickLucche <[email protected]>
1 parent 3ad986c commit 889ebb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/platforms/interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ def __getattr__(self, key: str):
410410
if device is not None and hasattr(device, key):
411411
return getattr(device, key)
412412
else:
413-
logger.warning("Current platform %s doesn't has '%s' attribute.",
414-
self.device_name, key)
413+
logger.warning("Current platform %s does not have '%s'" \
414+
" attribute.", self.device_name, key)
415415
return None
416416

417417
@classmethod

0 commit comments

Comments
 (0)