Skip to content

Commit

Permalink
hothix: fix python handler (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
sniedzielski committed Jan 29, 2024
1 parent 0fb6cbe commit 66b91fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/systems/python/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, name, group, system, function):

def run(self, data: Dict):
try:
output = self._function(data)
output = self._function(**data)
return result(
success=True,
data=output
Expand Down

0 comments on commit 66b91fe

Please sign in to comment.