Skip to content

Commit

Permalink
Do not convert config multiple times (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly authored Aug 5, 2024
1 parent 7a88a69 commit 4587d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zigpy_zigate/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

class ControllerApplication(zigpy.application.ControllerApplication):
def __init__(self, config: dict[str, Any]):
super().__init__(zigpy.config.ZIGPY_SCHEMA(config))
super().__init__(config)
self._api: ZiGate | None = None

self._pending = {}
Expand Down

0 comments on commit 4587d33

Please sign in to comment.