Skip to content

Commit f230da2

Browse files
committed
fix "callbackOutputs" -> "computedOutputs"
1 parent cfeddbd commit f230da2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dashipy/dashipy/server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ def post(self):
151151
if len(callback.outputs) == 1:
152152
output_values = (output_values,)
153153

154-
callback_outputs: list[dict] = []
154+
computed_outputs: list[dict] = []
155155
for output_index, output in enumerate(callback.outputs):
156156
output_value = output_values[output_index]
157-
callback_outputs.append(
157+
computed_outputs.append(
158158
{
159159
**output.to_dict(),
160160
"value": (
@@ -171,7 +171,7 @@ def post(self):
171171
{
172172
"contribPoint": contrib_point_name,
173173
"contribIndex": contrib_index,
174-
"callbackOutputs": callback_outputs,
174+
"computedOutputs": computed_outputs,
175175
}
176176
)
177177

0 commit comments

Comments
 (0)