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 07812b3 commit abd695eCopy full SHA for abd695e
projects/sbos-minimal/sbos/minimal/services/actuation.py
@@ -105,8 +105,8 @@ async def read(
105
task_results = await asyncio.gather(*tasks)
106
results = []
107
for i, (success, detail) in enumerate(task_results):
108
- # results.append(schemas.ActuationResult(entity_id=entity_ids[i], success=success, detail=detail))
109
- results.append(schemas.ActuationResult(entity_id=entity_ids[i], success=True, detail="101"))
+ results.append(schemas.ActuationResult(entity_id=entity_ids[i], success=success, detail=detail))
+ # results.append(schemas.ActuationResult(entity_id=entity_ids[i], success=True, detail="101"))
110
return schemas.ActuationResults(results=results).to_response()
111
112
@router.post(
0 commit comments