Skip to content

Commit

Permalink
Do not convert config multiple times (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly authored Aug 5, 2024
1 parent 3e54421 commit 0035116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zigpy_znp/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ControllerApplication(zigpy.application.ControllerApplication):
SCHEMA = conf.CONFIG_SCHEMA

def __init__(self, config: conf.ConfigType):
super().__init__(config=conf.CONFIG_SCHEMA(config))
super().__init__(config=config)

self._znp: ZNP | None = None
self._version_rsp = None
Expand Down

0 comments on commit 0035116

Please sign in to comment.