Skip to content

Commit 3ec95ba

Browse files
committed
fixed errors with output list and upgraded version
1 parent ddefa40 commit 3ec95ba

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.0.7b7"
1+
version = "0.0.7b8"

python-sdk/exospherehost/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ async def _worker(self):
324324
if outputs is None:
325325
outputs = []
326326

327-
if isinstance(outputs, BaseNode.Outputs):
327+
if not isinstance(outputs, list):
328328
outputs = [outputs]
329329

330330
await self._notify_executed(state["state_id"], outputs)

0 commit comments

Comments
 (0)