Skip to content

Commit 4722403

Browse files
authored
Do not convert config multiple times (#260)
1 parent dbfc27b commit 4722403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zigpy_deconz/zigbee/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ControllerApplication(zigpy.application.ControllerApplication):
7070
def __init__(self, config: dict[str, Any]):
7171
"""Initialize instance."""
7272

73-
super().__init__(config=zigpy.config.ZIGPY_SCHEMA(config))
73+
super().__init__(config=config)
7474
self._api = None
7575

7676
self._pending = zigpy.util.Requests()

0 commit comments

Comments
 (0)