mirror of
https://github.com/tcsenpai/pyhOn.git
synced 2025-06-07 03:35:24 +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
|