(minor) The latest ruff version has _slightly_ different formatting preferences.

This commit is contained in:
Ryan Dick 2024-03-11 09:45:25 -04:00 committed by Kent Keirsey
parent a78df8123f
commit 9d9d1761f3

View File

@ -28,9 +28,9 @@ class RectangleMaskInvocation(BaseInvocation, WithMetadata):
def invoke(self, context: InvocationContext) -> MaskOutput:
mask = torch.zeros((1, self.height, self.width), dtype=torch.bool)
mask[
:, self.y_top : self.y_top + self.rectangle_height, self.x_left : self.x_left + self.rectangle_width
] = True
mask[:, self.y_top : self.y_top + self.rectangle_height, self.x_left : self.x_left + self.rectangle_width] = (
True
)
mask_name = context.tensors.save(mask)
return MaskOutput(