Skip to content

Commit 8478d93

Browse files
committed
Another python dict fix
1 parent d7e9ecf commit 8478d93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom_components/dahua/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ def __init__(self, hass: HomeAssistant, dahua_client: DahuaClient, events: list)
115115
self.dahua_event = DahuaEventThread(hass, dahua_client, self.on_receive, events)
116116

117117
# A dictionary of event name (CrossLineDetection, VideoMotion, etc) to a listener for that event
118-
self._dahua_event_listeners: dict[str, CALLBACK_TYPE] = {}
118+
self._dahua_event_listeners: dict[str, CALLBACK_TYPE] = dict()
119119

120120
# A dictionary of event name (CrossLineDetection, VideoMotion, etc) to the time the event fire or was cleared.
121121
# If cleared the time will be 0. The time unit is seconds epoch
122-
self._dahua_event_timestamp: dict[str, int] = {}
122+
self._dahua_event_timestamp: dict[str, int] = dict()
123123

124124
super().__init__(hass, _LOGGER, name=DOMAIN, update_interval=SCAN_INTERVAL_SECONDS)
125125

0 commit comments

Comments
 (0)