Skip to content

Commit

Permalink
[SDXL] Fix dummy imports incorrect naming (huggingface#4370)
Browse files Browse the repository at this point in the history
[SDXL] Fix dummy imports
  • Loading branch information
patrickvonplaten authored Jul 30, 2023
1 parent 890206a commit 74f0520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/stable_diffusion_xl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class StableDiffusionXLPipelineOutput(BaseOutput):
if not (is_transformers_available() and is_torch_available()):
raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
from ...utils.dummy_torch_and_transformers_and_objects import * # noqa F403
from ...utils.dummy_torch_and_transformers_objects import * # noqa F403
else:
from .pipeline_stable_diffusion_xl import StableDiffusionXLPipeline
from .pipeline_stable_diffusion_xl_img2img import StableDiffusionXLImg2ImgPipeline
Expand Down

0 comments on commit 74f0520

Please sign in to comment.