| 48 | |
| 49 | |
| 50 | class DownBlockMotion(DownBlockMotion): |
| 51 | def __init__(self, *args, **kwargs): |
| 52 | deprecation_message = "Importing `DownBlockMotion` from `diffusers.models.unets.unet_3d_blocks` is deprecated and this will be removed in a future version. Please use `from diffusers.models.unets.unet_motion_model import DownBlockMotion` instead." |
| 53 | deprecate("DownBlockMotion", "1.0.0", deprecation_message) |
| 54 | super().__init__(*args, **kwargs) |
| 55 | |
| 56 | |
| 57 | class CrossAttnDownBlockMotion(CrossAttnDownBlockMotion): |
nothing calls this directly
no outgoing calls
no test coverage detected