mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-18 23:55:52 +08:00
fix: linter
This commit is contained in:
parent
048e8cf0d1
commit
45070535bd
@ -341,7 +341,7 @@ class WorkflowCycleManage:
|
|||||||
inputs = WorkflowEntry.handle_special_values(event.inputs)
|
inputs = WorkflowEntry.handle_special_values(event.inputs)
|
||||||
process_data = WorkflowEntry.handle_special_values(event.process_data)
|
process_data = WorkflowEntry.handle_special_values(event.process_data)
|
||||||
outputs = WorkflowEntry.handle_special_values(event.outputs)
|
outputs = WorkflowEntry.handle_special_values(event.outputs)
|
||||||
execution_metadata_dict = event.execution_metadata
|
execution_metadata_dict = dict(event.execution_metadata or {})
|
||||||
if self._wip_workflow_agent_logs.get(workflow_node_execution.id):
|
if self._wip_workflow_agent_logs.get(workflow_node_execution.id):
|
||||||
if not execution_metadata_dict:
|
if not execution_metadata_dict:
|
||||||
execution_metadata_dict = {}
|
execution_metadata_dict = {}
|
||||||
@ -397,7 +397,7 @@ class WorkflowCycleManage:
|
|||||||
outputs = WorkflowEntry.handle_special_values(event.outputs)
|
outputs = WorkflowEntry.handle_special_values(event.outputs)
|
||||||
finished_at = datetime.now(UTC).replace(tzinfo=None)
|
finished_at = datetime.now(UTC).replace(tzinfo=None)
|
||||||
elapsed_time = (finished_at - event.start_at).total_seconds()
|
elapsed_time = (finished_at - event.start_at).total_seconds()
|
||||||
execution_metadata_dict = event.execution_metadata
|
execution_metadata_dict = dict(event.execution_metadata or {})
|
||||||
if self._wip_workflow_agent_logs.get(workflow_node_execution.id):
|
if self._wip_workflow_agent_logs.get(workflow_node_execution.id):
|
||||||
if not execution_metadata_dict:
|
if not execution_metadata_dict:
|
||||||
execution_metadata_dict = {}
|
execution_metadata_dict = {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user