Remove degree from Kelvin unit (#40574)

Kelvin temperature unit does not use the degree symbol
This commit is contained in:
RichieFrame 2020-09-28 09:03:21 -05:00 committed by GitHub
parent a19e10c57a
commit ceded35a82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"