Fix issue with file validation in Message class

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-06-19 16:54:34 -03:00
commit 3d492db3d9

View file

@ -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 []