Skip to content

Commit 5c91ecf

Browse files
authored
Merge pull request #32 from golles/bugfix/humidity
Fix humidity
2 parents 6724da4 + 2db33c8 commit 5c91ecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/knmi/weather.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def native_pressure(self):
6060
return None
6161

6262
@property
63-
def native_humidity(self):
63+
def humidity(self):
6464
"""Return the humidity."""
6565
if super().get_data("lv") is not None:
6666
return float(super().get_data("lv"))

0 commit comments

Comments
 (0)