1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

Change output from dict to tuple

This commit is contained in:
checktheroads 2019-07-07 22:45:39 -07:00
parent 8ad4c2c2bc
commit 89aa429761

View file

@ -292,4 +292,4 @@ class Execute:
f"Parsed output for device type {device_config.nos}:\n{output}"
)
# return {"output": output, "status": status}
return {"output": output, "status": status}
return (output, status)