appease mypy

This commit is contained in:
svlandeg 2026-03-13 11:05:27 +01:00
parent 171f062dd5
commit e86753477a
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Undefined = PydanticUndefined
try:
from pydantic_extra_types.color import Color
except ImportError:
from pydantic.color import Color # noqa: F401
from pydantic.color import Color # type: ignore[assignment] # noqa: F401
def define_forwardref() -> Callable[..., Any]: