from typing import Callable, TypeAlias from . import autostrip PostBuild: TypeAlias = Callable[[], None] post_build: dict[str, PostBuild] = { "autostrip": autostrip.autostrip, }