Coverage for src/bioimageio/core/_axis_annotations.py: 100%
6 statements
« prev ^ index » next coverage.py v7.14.2, created at 2026-06-22 16:54 +0000
« prev ^ index » next coverage.py v7.14.2, created at 2026-06-22 16:54 +0000
1from typing import Annotated, TypeVar
3from ._common_annotations import PydanticMappingProxyAnnotation
4from .axis import PerAxis
6_T = TypeVar("_T")
8PerAxisAnno = Annotated[PerAxis[_T], PydanticMappingProxyAnnotation]
9"""PerAxis annotated with `PydanticMappingProxyAnnotation` to be compatible with pydantic models."""