Dan Simpson
Dan Simpson
Proof is in the deploy preview :) The autobuilt deploy preview is working: https://deploy-preview-749--homer-demo-content.netlify.app/ 🥳
Also keen to hear more about this! Just tried implementing a POST to `/api/operation` in tesla_powerwall python library repository, and it wasn't till I ran an integration test that I...
FYI, I've opened a (proof of concept) PR in this repo, which will hopefully unblock this 🤞 https://github.com/home-assistant-libs/ha-ffmpeg/pull/75
@pvizeli rebased as requested
I had something similar. Got it working by switching from `hass.services.call` to `hass.services.async_call`. Looks like a known change in core: https://developers.home-assistant.io/blog/2023/06/14/service-calls?_highlight=service&_highlight=call
Edit: my bad, was testing incorrectly. Did manage to get this working though, with the following parameters: ```python x = hass.services.call('todo', 'get_items', { "entity_id": "todo.alexa" }, blocking=True, return_response=True) ```