fix(nodes): add MetadataColorField

This commit is contained in:
psychedelicious 2023-05-05 11:38:01 +10:00
parent 04c453721c
commit 20f6a597ab

View File

@ -31,7 +31,7 @@ class MetadataColorField(TypedDict):
# TODO: This is a placeholder for `InvocationsUnion` pending resolution of circular imports
NodeMetadata = Dict[
str, None | str | int | float | bool | MetadataImageField | MetadataLatentsField
str, None | str | int | float | bool | MetadataImageField | MetadataLatentsField | MetadataColorField
]