fixed logger error

This commit is contained in:
Tim
2021-09-02 10:35:34 +09:30
committed by GitHub
parent 45890cf769
commit 81967039c2

View File

@@ -149,7 +149,7 @@ class LocaltuyaFan(LocalTuyaEntity, FanEntity):
)),
self._config.get(CONF_FAN_SPEED_CONTROL)
)
_LOGGER.debug("Fan async_set_percentage: %s > %s", percentage, percentage_to_ranged_value(self._ordered_list, percentage))
_LOGGER.debug("Fan async_set_percentage: %s > %s", percentage, percentage_to_ranged_value(self._speed_range, percentage))
async def async_oscillate(self, oscillating: bool) -> None: