typo: fix UIType on Spandrel Upscaling node.

This commit is contained in:
Ryan Dick 2024-06-28 18:18:45 -04:00
parent 29c8ddfb88
commit 504a42fe61

View File

@ -61,7 +61,7 @@ class UpscaleSpandrelInvocation(BaseInvocation, WithMetadata, WithBoard):
image: ImageField = InputField(description="The input image") image: ImageField = InputField(description="The input image")
spandrel_image_to_image_model: ModelIdentifierField = InputField( spandrel_image_to_image_model: ModelIdentifierField = InputField(
description=FieldDescriptions.spandrel_image_to_image_model, ui_type=UIType.LoRAModel description=FieldDescriptions.spandrel_image_to_image_model, ui_type=UIType.SpandrelImageToImageModel
) )
@torch.inference_mode() @torch.inference_mode()