Skip to content

Commit 4b56701

Browse files
authored
Move core config class to core_config.py (#129163)
1 parent 5922711 commit 4b56701

File tree

8 files changed

+789
-742
lines changed

8 files changed

+789
-742
lines changed

homeassistant/const.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,9 +1226,9 @@ class UnitOfConductivity(
12261226
StrEnum,
12271227
metaclass=EnumWithDeprecatedMembers,
12281228
deprecated={
1229-
"SIEMENS": ("SIEMENS_PER_CM", "2025.11.0"),
1230-
"MICROSIEMENS": ("MICROSIEMENS_PER_CM", "2025.11.0"),
1231-
"MILLISIEMENS": ("MILLISIEMENS_PER_CM", "2025.11.0"),
1229+
"SIEMENS": ("UnitOfConductivity.SIEMENS_PER_CM", "2025.11.0"),
1230+
"MICROSIEMENS": ("UnitOfConductivity.MICROSIEMENS_PER_CM", "2025.11.0"),
1231+
"MILLISIEMENS": ("UnitOfConductivity.MILLISIEMENS_PER_CM", "2025.11.0"),
12321232
},
12331233
):
12341234
"""Conductivity units."""

0 commit comments

Comments
 (0)