Skip to content

Commit

Permalink
Bump vallox_websocket_api to 4.0.3 (home-assistant#108109)
Browse files Browse the repository at this point in the history
  • Loading branch information
slovdahl authored Jan 16, 2024
1 parent 3ff74fe commit d0f4780
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/vallox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from datetime import date
import ipaddress
import logging
from typing import Any, NamedTuple, cast
from typing import Any, NamedTuple
from uuid import UUID

from vallox_websocket_api import PROFILE as VALLOX_PROFILE, Vallox, ValloxApiException
Expand Down Expand Up @@ -125,7 +125,7 @@ def get_metric(self, metric_key: str) -> StateType:
@property
def model(self) -> str | None:
"""Return the model, if any."""
model = cast(str, _api_get_model(self.metric_cache))
model = _api_get_model(self.metric_cache)

if model == "Unknown":
return None
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/vallox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/vallox",
"iot_class": "local_polling",
"loggers": ["vallox_websocket_api"],
"requirements": ["vallox-websocket-api==4.0.2"]
"requirements": ["vallox-websocket-api==4.0.3"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2745,7 +2745,7 @@ uvcclient==0.11.0
vacuum-map-parser-roborock==0.1.1

# homeassistant.components.vallox
vallox-websocket-api==4.0.2
vallox-websocket-api==4.0.3

# homeassistant.components.rdw
vehicle==2.2.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2080,7 +2080,7 @@ uvcclient==0.11.0
vacuum-map-parser-roborock==0.1.1

# homeassistant.components.vallox
vallox-websocket-api==4.0.2
vallox-websocket-api==4.0.3

# homeassistant.components.rdw
vehicle==2.2.1
Expand Down

0 comments on commit d0f4780

Please sign in to comment.