| 62 | |
| 63 | |
| 64 | class UpBlockMotion(UpBlockMotion): |
| 65 | def __init__(self, *args, **kwargs): |
| 66 | deprecation_message = "Importing `UpBlockMotion` 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 UpBlockMotion` instead." |
| 67 | deprecate("UpBlockMotion", "1.0.0", deprecation_message) |
| 68 | super().__init__(*args, **kwargs) |
| 69 | |
| 70 | |
| 71 | class CrossAttnUpBlockMotion(CrossAttnUpBlockMotion): |
nothing calls this directly
no outgoing calls
no test coverage detected