Skip to content

Commit

Permalink
Do not double convert config
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Aug 5, 2024
1 parent eac101f commit c9ae9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zigpy_xbee/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,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: zigpy_xbee.api.XBee | None = None
self.topology.add_listener(self)

Expand Down

0 comments on commit c9ae9c6

Please sign in to comment.