1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00
This commit is contained in:
DN6
2025-09-11 08:21:57 +05:30
parent 93f71d95a2
commit 9150ab02f6

View File

@@ -167,7 +167,7 @@ class PeftLoraLoaderMixinTests:
Returns the cached base pipeline output for the given scheduler.
Cache is populated during setUp, so this just retrieves the value.
"""
return type(self).cached_base_pipe_outs[scheduler_cls.__name__]
return self.cached_base_pipe_outs[scheduler_cls.__name__]
def get_dummy_components(self, scheduler_cls=None, use_dora=False, lora_alpha=None):
if self.unet_kwargs and self.transformer_kwargs: