Skip to content

Commit

Permalink
Do not convert config multiple times (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly authored Aug 5, 2024
1 parent dbfc27b commit 4722403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zigpy_deconz/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class ControllerApplication(zigpy.application.ControllerApplication):
def __init__(self, config: dict[str, Any]):
"""Initialize instance."""

super().__init__(config=zigpy.config.ZIGPY_SCHEMA(config))
super().__init__(config=config)
self._api = None

self._pending = zigpy.util.Requests()
Expand Down

0 comments on commit 4722403

Please sign in to comment.