Skip to content

Commit cc54466

Browse files
psychedeliciousmaryhipp
authored andcommitted
fix(nodes): default value for UIConfigBase.tags
1 parent cbdafe7 commit cc54466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/app/invocations/baseinvocation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class UIConfigBase(BaseModel):
7878
This is used internally by the @invocation decorator logic. Do not use this directly.
7979
"""
8080

81-
tags: Optional[list[str]] = Field(default_factory=None, description="The node's tags")
81+
tags: Optional[list[str]] = Field(default=None, description="The node's tags")
8282
title: Optional[str] = Field(default=None, description="The node's display name")
8383
category: Optional[str] = Field(default=None, description="The node's category")
8484
version: str = Field(

0 commit comments

Comments
 (0)