We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfeddbd commit f230da2Copy full SHA for f230da2
dashipy/dashipy/server.py
@@ -151,10 +151,10 @@ def post(self):
151
if len(callback.outputs) == 1:
152
output_values = (output_values,)
153
154
- callback_outputs: list[dict] = []
+ computed_outputs: list[dict] = []
155
for output_index, output in enumerate(callback.outputs):
156
output_value = output_values[output_index]
157
- callback_outputs.append(
+ computed_outputs.append(
158
{
159
**output.to_dict(),
160
"value": (
@@ -171,7 +171,7 @@ def post(self):
171
172
"contribPoint": contrib_point_name,
173
"contribIndex": contrib_index,
174
- "callbackOutputs": callback_outputs,
+ "computedOutputs": computed_outputs,
175
}
176
)
177
0 commit comments