Open rwarner opened 1 year ago
I went into custom_components/variable/__init__.py
and changed
line 126 from:
yield from asyncio.wait(tasks, loop=hass.loop)
to
yield from asyncio.wait(tasks)
and now it seems to be working for the time being fyi. Something different with the support in aiohttp or python
Had the same problem, applied your fix and works for me too.
Thx
Had further issues with Python 3.11, moved over to: https://github.com/Wibias/hass-variables
Just upgraded to 2023.2.0 and also upgraded to Python 3.10.9 and it appears that I run into an error with some Python incompatibility:
Doesn't seem like this will be fixed given the other issues filed for this repo. Will be seeking an alternative for storing variables for HASS globally and will update here.