mirror of https://github.com/langgenius/dify.git
fix: mapping to dict
This commit is contained in:
parent
eb3b5f751a
commit
5861ca773e
|
|
@ -62,7 +62,7 @@ class TriggerEventNodeData(BaseNodeData):
|
|||
Mapping[str, Any]: A dictionary containing the generated parameters.
|
||||
|
||||
"""
|
||||
result: Mapping[str, Any] = {}
|
||||
result: dict[str, Any] = {}
|
||||
for parameter_name in self.event_parameters:
|
||||
parameter: EventParameter | None = parameter_schemas.get(parameter_name)
|
||||
if not parameter:
|
||||
|
|
|
|||
Loading…
Reference in New Issue