zigpy / zha

Zigbee Home Automation
Apache License 2.0
10 stars 4 forks source link

Fix thermostat entity fan mode #45

Closed puddly closed 3 months ago

puddly commented 3 months ago

self._supported_flags was mutated within the supported_features property but a copy was returned. Not sure what the best approach should be:

  1. Mutate self._supported_features as is currently done.
  2. Fix line 294 in the existing code to mutate features instead.