Remove degree from Kelvin unit (#40574)
Kelvin temperature unit does not use the degree symbol
This commit is contained in:
parent
a19e10c57a
commit
ceded35a82
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ CURRENCY_CENT = "¢"
|
||||||
# Temperature units
|
# Temperature units
|
||||||
TEMP_CELSIUS = f"{DEGREE}C"
|
TEMP_CELSIUS = f"{DEGREE}C"
|
||||||
TEMP_FAHRENHEIT = f"{DEGREE}F"
|
TEMP_FAHRENHEIT = f"{DEGREE}F"
|
||||||
TEMP_KELVIN = f"{DEGREE}K"
|
TEMP_KELVIN = "K"
|
||||||
|
|
||||||
# Time units
|
# Time units
|
||||||
TIME_MICROSECONDS = "μs"
|
TIME_MICROSECONDS = "μs"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue