mdeweerd / zha-toolkit

🧰 Zigbee Home Assistant Toolkit - service for "rare" Zigbee operations using ZHA on Home Assistant
GNU General Public License v3.0
171 stars 17 forks source link

"write" command returning error message. #232

Open johngalt991 opened 4 weeks ago

johngalt991 commented 4 weeks ago

After updating to 2024.6, i am receiving an error message when trying to publish a messsage with "write" command.

LOG:

websocket_api script: Error executing script. Unexpected error for call_service at pos 1: async_get() takes 1 positional argument but 2 were given Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 526, in _async_step await getattr(self, handler)() File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 763, in _async_call_service_step response_data = await self._async_run_long_action( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 726, in _async_run_long_action return await long_task ^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/core.py", line 2741, in async_call response_data = await coro ^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/core.py", line 2784, in _execute_service return await target(service_call) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/config/custom_components/zha_toolkit/init.py", line 725, in toolkit_service ieee = await u.get_ieee(app, zha_gw, ieee_str) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/config/custom_components/zha_toolkit/utils.py", line 286, in get_ieee else get_hass(listener).helpers.entity_registry.async_get( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: async_get() takes 1 positional argument but 2 were given

CordoWEB commented 4 weeks ago

The Pull Request https://github.com/mdeweerd/zha-toolkit/pull/231 seems to fix this issue.

johngalt991 commented 4 weeks ago

That worked. Thank you very much! @CordoWEB