Skip to content

Commit 3156531

Browse files
fix: inputs required nullability
1 parent 907708b commit 3156531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/models-library/src/models_library/projects_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class Node(BaseModel):
192192
] = DEFAULT_FACTORY
193193

194194
inputs_required: Annotated[
195-
list[InputID],
195+
list[InputID] | None,
196196
Field(
197197
default_factory=list,
198198
description="Defines inputs that are required in order to run the service",

0 commit comments

Comments
 (0)