From f7bedec42e6e29733a726a4e0aca3765ed6c36ee Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 5 Jan 2022 15:09:51 -1000 Subject: [PATCH] Fix type for `current_humidity` (#1153) --- docs/core/entity/climate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/entity/climate.md b/docs/core/entity/climate.md index cb3f3003..249f60b3 100644 --- a/docs/core/entity/climate.md +++ b/docs/core/entity/climate.md @@ -16,7 +16,7 @@ Properties should always only return information from memory and not do I/O (lik | temperature_unit | string | `NotImplementedError` | The unit of temperature measurement for the system (`TEMP_CELSIUS` or `TEMP_FAHRENHEIT`). | | precision | float | Based on `temperature_unit` | The precision of the temperature in the system. Defaults to tenths for TEMP_CELSIUS, whole number otherwise. | | current_temperature | float | None | The current temperature. | -| current_humidity | float | None | The current humidity. | +| current_humidity | int | None | The current humidity. | | target_temperature | float | None | The temperature currently set to be reached. | | target_temperature_high | float | None | The upper bound target temperature | | target_temperature_low | float | None | The lower bound target temperature |