Skip to content

Commit

Permalink
Add UnCLIPImageVariationPipeline to dummy imports (huggingface#1897)
Browse files Browse the repository at this point in the history
* Add UnCLIPImageVariationPipeline to dummy imports

* style
  • Loading branch information
anton-l authored Jan 3, 2023
1 parent da31075 commit f17fae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/diffusers/pipelines/unclip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
if not (is_transformers_available() and is_torch_available() and is_transformers_version(">=", "4.25.0")):
raise OptionalDependencyNotAvailable()
except OptionalDependencyNotAvailable:
from ...utils.dummy_torch_and_transformers_objects import UnCLIPPipeline
from ...utils.dummy_torch_and_transformers_objects import UnCLIPImageVariationPipeline, UnCLIPPipeline
else:
from .pipeline_unclip import UnCLIPPipeline
from .pipeline_unclip_image_variation import UnCLIPImageVariationPipeline
Expand Down

0 comments on commit f17fae6

Please sign in to comment.