add pragma no cover again

This commit is contained in:
svlandeg 2026-03-13 11:20:16 +01:00
parent 6851dad91c
commit f57b166f56
1 changed files with 3 additions and 1 deletions

View File

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