mirror of
https://github.com/Andre0512/pyhOn.git
synced 2024-01-19 02:50:44 +00:00
8 lines
205 B
Python
8 lines
205 B
Python
class Appliance:
|
|
def __init__(self, data):
|
|
self._data = data
|
|
|
|
def get(self):
|
|
self._data["connected"] = self._data["lastConnEvent.category"] == "CONNECTED"
|
|
return self._data
|