From 796c99270c9ed572034445a4c7450c67e8962882 Mon Sep 17 00:00:00 2001 From: yiyixuxu Date: Tue, 22 Jul 2025 02:19:53 +0200 Subject: [PATCH] up more --- src/diffusers/modular_pipelines/modular_pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/diffusers/modular_pipelines/modular_pipeline.py b/src/diffusers/modular_pipelines/modular_pipeline.py index ce0068e036..8039e4ecaf 100644 --- a/src/diffusers/modular_pipelines/modular_pipeline.py +++ b/src/diffusers/modular_pipelines/modular_pipeline.py @@ -2520,9 +2520,9 @@ class ModularPipeline(ConfigMixin, PushToHubMixin): ): logger.warning( f"ModularPipeline.update_components: {name} has no valid _diffusers_load_id. " - f"Updating the component but skipping spec update, use ComponentSpec.load() for proper specs" + f"This will result in empty loading spec, use ComponentSpec.load() for proper specs" ) - new_component_spec = current_component_spec + new_component_spec = ComponentSpec(name=name, type_hint=type(component)) else: new_component_spec = ComponentSpec.from_component(name, component)