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

1from typing import Annotated, TypeVar 

2 

3from ._common_annotations import PydanticMappingProxyAnnotation 

4from .axis import PerAxis 

5 

6_T = TypeVar("_T") 

7 

8PerAxisAnno = Annotated[PerAxis[_T], PydanticMappingProxyAnnotation] 

9"""PerAxis annotated with `PydanticMappingProxyAnnotation` to be compatible with pydantic models."""