From 96eceb8dc4ae2204b4edccd256ef04b53c14cbf6 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 19 Oct 2023 09:37:07 +0200 Subject: [PATCH] Fix Python operator template too --- binaries/cli/src/template/python/operator/operator-template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binaries/cli/src/template/python/operator/operator-template.py b/binaries/cli/src/template/python/operator/operator-template.py index 4efb4457..88452221 100644 --- a/binaries/cli/src/template/python/operator/operator-template.py +++ b/binaries/cli/src/template/python/operator/operator-template.py @@ -45,7 +45,7 @@ class Operator: """ print( - f"Received input {dora_input['id']}, with data: {dora_input['data']}" + f"Received input {dora_input['id']}, with data: {dora_input['value']}" ) return DoraStatus.CONTINUE