Fix missing ClassVar import

This commit is contained in:
Josh Wu
2026-01-16 15:21:26 +08:00
parent f1058e4d4e
commit d4b0da9265

View File

@@ -28,6 +28,7 @@ from collections.abc import Callable, Iterable, Sequence
from dataclasses import field from dataclasses import field
from typing import ( from typing import (
Any, Any,
ClassVar,
Literal, Literal,
TypeVar, TypeVar,
cast, cast,