We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4dc29f commit d0986bcCopy full SHA for d0986bc
invokeai/app/invocations/image.py
@@ -33,8 +33,8 @@ class ImageOutput(BaseInvocationOutput):
33
# fmt: off
34
type: Literal["image"] = "image"
35
image: ImageField = Field(default=None, description="The output image")
36
- width: Optional[int] = Field(default=None, description="The width of the image in pixels")
37
- height: Optional[int] = Field(default=None, description="The height of the image in pixels")
+ width: int = Field(description="The width of the image in pixels")
+ height: int = Field(description="The height of the image in pixels")
38
# fmt: on
39
40
class Config:
0 commit comments