8 lines
272 B
Python
8 lines
272 B
Python
class Appliance:
|
|
def __init__(self, data):
|
|
self._data = data
|
|
|
|
def get(self):
|
|
if self._data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
|
self._data["attributes"]["parameters"]["machMode"] = "0"
|
|
return self._data
|