bug: fix auradine multicommand format for get_data.

This commit is contained in:
b-rowan
2024-01-24 18:05:32 -07:00
parent 49fc0f3c54
commit d81e3e9f88

View File

@@ -118,7 +118,7 @@ class FluxWebAPI(BaseWebAPI):
result = tasks[cmd].result() result = tasks[cmd].result()
if result is None or result == {}: if result is None or result == {}:
result = {} result = {}
data[cmd] = [result] data[cmd] = result
except APIError: except APIError:
pass pass