appease mypy once more

This commit is contained in:
svlandeg 2026-03-13 11:25:55 +01:00
parent f57b166f56
commit 926156f360
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ Undefined = PydanticUndefined
try:
from pydantic_extra_types.color import Color
except ImportError:
from pydantic.color import (
Color, # type: ignore[assignment] # noqa: F401 # pragma: no cover
from pydantic.color import ( # type: ignore[assignment]
Color, # noqa: F401 # pragma: no cover
)