Skip to content

Commit

Permalink
fix call to keys() on operand in operand resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Dec 5, 2023
1 parent 01cf3db commit a58b788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/src/core/expressions/OperandResolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def resolve(self, operand: Operand):
return operand

# NOTE all operands should have only 1 key
key = operand.keys[0]
key = operand.keys()[0]
if key == "task_output":
value = self._value_from_service.get_task_output_value_by_id(
task_id=operand[key]["task_id"],
Expand Down

0 comments on commit a58b788

Please sign in to comment.