chz/blueprint/_blueprint.py [1136:1148]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        value_mapping = _construct_factory(
            factory,
            param_path,
            arg_map,
            all_params=all_params,
            used_args=used_args,
            meta_factory_value=meta_factory_value,
            missing_params=missing_params,
        )
        if isinstance(value_mapping, ConstructionIssue):
            return value_mapping
        meta_factory_value[param_path] = factory
        return value_mapping
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



chz/blueprint/_blueprint.py [1175:1187]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            value_mapping = _construct_factory(
                factory,
                param_path,
                arg_map,
                all_params=all_params,
                used_args=used_args,
                meta_factory_value=meta_factory_value,
                missing_params=missing_params,
            )
            if isinstance(value_mapping, ConstructionIssue):
                return value_mapping
            meta_factory_value[param_path] = factory
            return value_mapping
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



