From ceded35a82f3a33c2a93697c006137ba0373e7e7 Mon Sep 17 00:00:00 2001 From: RichieFrame <33644730+RichieFrame@users.noreply.github.com> Date: Mon, 28 Sep 2020 09:03:21 -0500 Subject: [PATCH] Remove degree from Kelvin unit (#40574) Kelvin temperature unit does not use the degree symbol --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 4d5f4db665c..0e69f8c5b13 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -389,7 +389,7 @@ CURRENCY_CENT = "¢" # Temperature units TEMP_CELSIUS = f"{DEGREE}C" TEMP_FAHRENHEIT = f"{DEGREE}F" -TEMP_KELVIN = f"{DEGREE}K" +TEMP_KELVIN = "K" # Time units TIME_MICROSECONDS = "μs"