fix(nodes): fix infill docstrings

This commit is contained in:
psychedelicious 2023-05-06 19:36:51 +10:00
parent 4ef0e43759
commit 4e56c962f4

View File

@ -122,7 +122,7 @@ def tile_fill_missing(
class InfillColorInvocation(BaseInvocation):
"""Infills transparent areas of an image with a color"""
"""Infills transparent areas of an image with a solid color"""
type: Literal["infill_rgba"] = "infill_rgba"
image: ImageField = Field(default=None, description="The image to infill")
@ -200,7 +200,7 @@ class InfillTileInvocation(BaseInvocation):
class InfillPatchMatchInvocation(BaseInvocation):
"""Infills transparent areas of an image with tiles of the image"""
"""Infills transparent areas of an image using the PatchMatch algorithm"""
type: Literal["infill_patchmatch"] = "infill_patchmatch"