from typing import Mapping, Type from nndet.utils.registry import Registry from nndet.planning.experiment.base import PlannerType, AbstractPlanner PLANNER_REGISTRY: Mapping[str, Type[PlannerType]] = Registry() from nndet.planning.experiment.v001 import D3V001