Skip to content

Commit 4e8ef65

Browse files
committed
Slight consistency tweak for tooltip text.
1 parent c1f7e80 commit 4e8ef65

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

py/msw_msa_attention.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def attn1_output_patch(n: torch.Tensor, extra_options: dict) -> torch.Tensor:
265265

266266
class ApplyMSWMSAAttentionSimple:
267267
RETURN_TYPES = ("MODEL",)
268-
OUTPUT_TOOLTIPS = ("Model patched with the MSW-MSA attention effect",)
268+
OUTPUT_TOOLTIPS = ("Model patched with the MSW-MSA attention effect.",)
269269
FUNCTION = "go"
270270
CATEGORY = "model_patches/unet"
271271
DESCRIPTION = "This node applies an attention patch which _may_ slightly improve quality especially when generating at high resolutions. It is a large performance increase on SD1.x, may improve performance on SDXL. This is the simplified version of the node with less parameters. Use ApplyMSWMSAAttention if you require more control. NOTE: Only supports SD1.x, SD2.x and SDXL."

py/raunet.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def forward_downsample(
216216

217217
class ApplyRAUNet:
218218
RETURN_TYPES = ("MODEL",)
219-
OUTPUT_TOOLTIPS = ("Model patched with the RAUNet effect",)
219+
OUTPUT_TOOLTIPS = ("Model patched with the RAUNet effect.",)
220220
FUNCTION = "patch"
221221
CATEGORY = "model_patches/unet"
222222
DESCRIPTION = "This node is used to enable generation at higher resolutions than a model was trained for with less artifacts or other negative effects. This is the advanced version with more tuneable parameters, use ApplyRAUNetSimple if this seems too complex. NOTE: Only supports SD1.x, SD2.x and SDXL."
@@ -472,7 +472,7 @@ def output_block_patch(
472472

473473
class ApplyRAUNetSimple:
474474
RETURN_TYPES = ("MODEL",)
475-
OUTPUT_TOOLTIPS = ("Model patched with the RAUNet effect",)
475+
OUTPUT_TOOLTIPS = ("Model patched with the RAUNet effect.",)
476476
FUNCTION = "patch"
477477
CATEGORY = "model_patches/unet"
478478
DESCRIPTION = "This node is used to enable generation at higher resolutions than a model was trained for with less artifacts or other negative effects. This is the simplified version with less parameters, use ApplyRAUNet if you require more control. NOTE: Only supports SD1.x, SD2.x and SDXL."
@@ -490,7 +490,7 @@ def INPUT_TYPES(cls) -> dict:
490490
"model_type": (
491491
("SD15", "SDXL"),
492492
{
493-
"tooltip": "Model type being patched. Choose SD15 for SD 1.4, SD 2.x.",
493+
"tooltip": "Model type being patched. Choose SD15 for SD 1.4 or SD 2.x.",
494494
},
495495
),
496496
"res_mode": (

0 commit comments

Comments
 (0)