John Lancaster
John Lancaster
This is already fixed, but hasn't quite made it to the add-on yet
This should work in `dev` now
Persistent namespaces are what's broken in 3.13. Python seems to shift around what they're doing with DbfilenameShelf on the backend, and it's also different across platforms. In the meantime, I'd...
I'm actually really glad you bring this up because I think I'm the first contributor in quite some time to really take a look under the hood in this project....
That's correct. Unfortunately the term "nix" refers to a many different things. One of them is a package manager that you can [install](https://determinate.systems/nix-installer/) on other distros. This can install packages...
I agree - this shouldn't be happening. I'll take a look
Not sure I follow you with this. I don't think Home Assistant generally emits events directly tied to entities that aren't state changes (`state_changed` events)
I think this is similar to what @acockburn does, with a HAL (hardware abstraction layer): ```python # hal.py HAL_LIVING_ROOM_MOTION = 'binary_sensor.living_room_motion_occupancy5' ``` Then in your apps you would import it...
That's the idea! I do appreciate the response, but I want to make a few points in case this gets some visibility: - Using `import *` works, but is [generally...
I don't mean this as a RTFM 😆, but the [python docs themselves](https://docs.python.org/3/library/functions.html#property) are generally pretty good. Otherwise, I really like [RealPython](https://realpython.com/python-property/) Essentially it lets you put a function behind...