Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Dec 5, 2023
1 parent fdc1ae0 commit c9afcfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/src/core/expressions/OperandResolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ def resolve(self, operand: Operand):

if key == "args":
value = self._value_from_service.get_arg_value_by_key(
operand[key]["args"]
operand[key]
)
return value

if key == "env":
value = self._value_from_service.get_env_value_by_key(
operand[key]["args"]
operand[key]
)
return value

0 comments on commit c9afcfb

Please sign in to comment.