1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

Apply style fixes

This commit is contained in:
github-actions[bot]
2025-11-28 12:52:07 +00:00
parent ddc6164d18
commit 716dfe1468

View File

@@ -152,7 +152,9 @@ class TaylorSeerState:
if prev is None:
break
new_factors[j + 1] = (new_factors[j] - prev.to(features.dtype)) / delta_step
self.taylor_factors[i] = {order: factor.to(self.taylor_factors_dtype) for order, factor in new_factors.items()}
self.taylor_factors[i] = {
order: factor.to(self.taylor_factors_dtype) for order, factor in new_factors.items()
}
self.last_update_step = self.current_step