Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

yamahayxc: fix startup #966

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions yamahayxc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ class YamahaYXC(SmartPlugin):
# public functions
#

def __init__(self, **kwargs):
def __init__(self, smarthome, **kwargs):
"""
Default init function
"""
super().__init__(**kwargs)

self._sh = smarthome
self.logger.info("Init YamahaYXC")

# valid commands for use in item configuration 'yamahayxc_cmd = ...'
Expand Down
2 changes: 1 addition & 1 deletion yamahayxc/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ plugin:
# documentation: https://github.com/smarthomeNG/smarthome/wiki/CLI-Plugin # url of documentation (wiki) page
support: https://knx-user-forum.de/forum/supportforen/smarthome-py/1174064-plugin-yamaha-musiccast-geräte-neuere-generation

version: 1.0.6 # Plugin version
version: 1.0.7 # Plugin version
sh_minversion: '1.3' # minimum shNG version to use this plugin
# sh_maxversion: # maximum shNG version to use this plugin (leave empty if latest)
multi_instance: False # plugin supports multi instance
Expand Down
Loading