Skip to content

Commit

Permalink
fix: removing local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
thiago-felipe-99 committed Dec 20, 2023
1 parent 013e43f commit 871e9a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,9 @@ async def get_flow_run_ids_from_write(selection: FieldNode, variables: dict) ->
for field in variables[arg.value.name.value]:
if field == "logs":
if "flow_run_id" in variables[arg.value.name.value][field]:
flow_run_ids.append(log["flow_run_id"])
flow_run_ids.append(
variables[arg.value.name.value][field]["flow_run_id"]
)
return flow_run_ids


Expand Down

0 comments on commit 871e9a2

Please sign in to comment.