From 0be3dec1f7ecd04c4e49bfc16547b9984f5e8acf Mon Sep 17 00:00:00 2001 From: yiyixuxu Date: Tue, 22 Jul 2025 00:37:59 +0200 Subject: [PATCH] style --- 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 d988a26cb3..ce0068e036 100644 --- a/src/diffusers/modular_pipelines/modular_pipeline.py +++ b/src/diffusers/modular_pipelines/modular_pipeline.py @@ -212,8 +212,8 @@ class PipelineState: def __getattr__(self, name): """ - Allow attribute access to intermediate values. - If an attribute is not found in the object, look for it in the intermediates dict. + Allow attribute access to intermediate values. If an attribute is not found in the object, look for it in the + intermediates dict. """ if name in self.intermediates: return self.intermediates[name]