Skip to content

Commit 7b022df

Browse files
[SDXL] Fix dummy imports
1 parent 965e52c commit 7b022df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/pipelines/stable_diffusion_xl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class StableDiffusionXLPipelineOutput(BaseOutput):
3030
if not (is_transformers_available() and is_torch_available()):
3131
raise OptionalDependencyNotAvailable()
3232
except OptionalDependencyNotAvailable:
33-
from ...utils.dummy_torch_and_transformers_and_objects import * # noqa F403
33+
from ...utils.dummy_torch_and_transformers_objects import * # noqa F403
3434
else:
3535
from .pipeline_stable_diffusion_xl import StableDiffusionXLPipeline
3636
from .pipeline_stable_diffusion_xl_img2img import StableDiffusionXLImg2ImgPipeline

0 commit comments

Comments
 (0)