Fix issue with file validation in Message class
This commit is contained in:
parent
ebb8275bf2
commit
3d492db3d9
1 changed files with 2 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ class Component(CustomComponent):
|
|||
super().__init__(**data)
|
||||
self._inputs: dict[str, InputTypes] = {}
|
||||
self._results: dict[str, Any] = {}
|
||||
_attributes: dict[str, Any] = {}
|
||||
self._attributes: dict[str, Any] = {}
|
||||
if self.inputs is not None:
|
||||
self.map_inputs(self.inputs)
|
||||
|
||||
|
|
@ -189,3 +189,4 @@ class Component(CustomComponent):
|
|||
except KeyError:
|
||||
return []
|
||||
return []
|
||||
return []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue