Skip to content

Commit

Permalink
Update philips_airpurifier_fan.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldt80 authored Nov 24, 2024
1 parent 9ffdbb5 commit 2a3a924
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
PHILIPS_TIMER,
PHILIPS_USED_INDEX,
PHILIPS_WATER_LEVEL,
PHILIPS_MACADDRESS,
SPEED_MAP,
USED_INDEX_MAP,
)
Expand All @@ -69,10 +70,11 @@
class PhilipsAirPurifierFan(FanEntity):
"""philips_aurpurifier fan entity."""

def __init__(self, hass, client, name):
def __init__(self, hass, client, name, unique_id):
self.hass = hass
self._client = client
self._name = name
self._unique_id = None

self._available = False
self._state = None
Expand Down

0 comments on commit 2a3a924

Please sign in to comment.