From 2710f77218af804449b26702abbfdff9550c293c Mon Sep 17 00:00:00 2001 From: Silver <65376327+silveroxides@users.noreply.github.com> Date: Sat, 22 Mar 2025 16:18:17 +0100 Subject: [PATCH] trim more trailing whitespace..oops --- comfy/ldm/chroma/layers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/ldm/chroma/layers.py b/comfy/ldm/chroma/layers.py index 606d9688..8ad3c72d 100644 --- a/comfy/ldm/chroma/layers.py +++ b/comfy/ldm/chroma/layers.py @@ -126,7 +126,7 @@ class Approximator(nn.Module): def device(self): # Get the device of the module (assumes all parameters are on the same device) return next(self.parameters()).device - + def forward(self, x: Tensor) -> Tensor: x = self.in_proj(x)