Skip to content

Commit

Permalink
fix: callback parameters (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
lhw authored Dec 28, 2024
1 parent 30eb29b commit b940197
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/cloudweatherproxy/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/lhw/cloudweatherproxy/issues",
"requirements": [
"aiocloudweather==2024.12.1"
"aiocloudweather==2024.12.2"
],
"version": "2024.12.0"
}
2 changes: 1 addition & 1 deletion custom_components/cloudweatherproxy/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async def _new_dataset(station: WeatherStation) -> None:
continue

new_sensor = CloudWeatherEntity(
sensor, station, hass.config.units, str(
sensor, station, str(
field.metadata.get("name"))
)
known_sensors[unique_id] = new_sensor
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ pip>=24.1,<25.0
ruff==0.8.*
colorlog==6.9.*
homeassistant==2024.12.5
aiocloudweather==2024.12.1
aiocloudweather==2024.12.2

0 comments on commit b940197

Please sign in to comment.