Unverified Commit 99d69af9 authored by Cyrus Leung's avatar Cyrus Leung Committed by GitHub
Browse files

[Bugfix] Python 3.10 compatibility for `Self` (#27918)


Signed-off-by: default avatarDarkLight1337 <tlleungac@connect.ust.hk>
parent d811b442
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project # SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import hashlib import hashlib
from typing import Any, Literal, Self from typing import Any, Literal
from pydantic import model_validator from pydantic import model_validator
from pydantic.dataclasses import dataclass from pydantic.dataclasses import dataclass
from typing_extensions import Self
from vllm.config.utils import config from vllm.config.utils import config
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment