(
target_hierarchy: Type[SupportsWrappingAnnotations],
base_cls: Type[Annotated],
)
| 583 | |
| 584 | |
| 585 | def _prepare_annotations( |
| 586 | target_hierarchy: Type[SupportsWrappingAnnotations], |
| 587 | base_cls: Type[Annotated], |
| 588 | ) -> None: |
| 589 | for cls in util.walk_subclasses(target_hierarchy): |
| 590 | _new_annotation_type(cls, base_cls) |
no test coverage detected