mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Use Python3 new super syntax sugar (#26890)
This commit is contained in:
committed by
Paulus Schoutsen
parent
6fdff9ffab
commit
9c9c921922
@@ -107,7 +107,7 @@ class NX584Watcher(threading.Thread):
|
||||
|
||||
def __init__(self, client, zone_sensors):
|
||||
"""Initialize NX584 watcher thread."""
|
||||
super(NX584Watcher, self).__init__()
|
||||
super().__init__()
|
||||
self.daemon = True
|
||||
self._client = client
|
||||
self._zone_sensors = zone_sensors
|
||||
|
||||
Reference in New Issue
Block a user