Skip to content

Commit 0723d8d

Browse files
authored
2 parents c9ed57b + 73c9edd commit 0723d8d

57 files changed

Lines changed: 570 additions & 508 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

homeassistant/components/alarmdecoder/icons.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"service": "mdi:dialpad"
1212
},
1313
"alarm_toggle_chime": {
14-
"service": "mdi:abc"
14+
"service": "mdi:bell-ring"
1515
}
1616
}
1717
}

homeassistant/components/alexa_devices/strings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@
102102
"entry_not_loaded": {
103103
"message": "Entry not loaded: {entry}"
104104
},
105+
"invalid_auth": {
106+
"message": "Invalid authentication credentials: {error}"
107+
},
105108
"invalid_device_id": {
106109
"message": "Invalid device ID specified: {device_id}"
107110
},

homeassistant/components/comelit/config_flow.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> dict[str,
7070
raise InvalidAuth(
7171
translation_domain=DOMAIN,
7272
translation_key="cannot_authenticate",
73-
translation_placeholders={"error": repr(err)},
7473
) from err
7574
finally:
7675
await api.logout()

homeassistant/components/currencylayer/sensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class CurrencylayerSensor(SensorEntity):
6363
"""Implementing the Currencylayer sensor."""
6464

6565
_attr_attribution = "Data provided by currencylayer.com"
66-
_attr_icon = "mdi:currency"
66+
_attr_icon = "mdi:currency-usd"
6767

6868
def __init__(self, rest: CurrencylayerData, base: str, quote: str) -> None:
6969
"""Initialize the sensor."""

homeassistant/components/dnsip/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"documentation": "https://www.home-assistant.io/integrations/dnsip",
77
"integration_type": "service",
88
"iot_class": "cloud_polling",
9-
"requirements": ["aiodns==4.0.3"]
9+
"requirements": ["aiodns==4.0.4"]
1010
}

homeassistant/components/evohome/icons.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"service": "mdi:refresh"
2424
},
2525
"set_dhw_override": {
26-
"service": "mdi:water-heater"
26+
"service": "mdi:water-boiler"
2727
},
2828
"set_system_mode": {
2929
"service": "mdi:pencil"

homeassistant/components/fing/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DeviceType(Enum):
1616
GAME_CONSOLE = "mdi:nintendo-game-boy"
1717
STREAMING_DONGLE = "mdi:cast"
1818
LOUDSPEAKER = SOUND_SYSTEM = STB = SATELLITE = MUSIC = "mdi:speaker"
19-
DISC_PLAYER = "mdi:disk-player"
19+
DISC_PLAYER = "mdi:disc-player"
2020
REMOTE_CONTROL = "mdi:remote-tv"
2121
RADIO = "mdi:radio"
2222
PHOTO_CAMERA = PHOTOS = "mdi:camera"

homeassistant/components/fumis/icons.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"entity": {
33
"button": {
44
"sync_clock": {
5-
"default": "mdi:clock-sync"
5+
"default": "mdi:clock-check"
66
}
77
},
88
"number": {

homeassistant/components/habitica/services.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,10 +808,10 @@ async def create_tag(tag_name: str) -> UUID:
808808
data["daysOfMonth"] = [start_date.day]
809809
data["weeksOfMonth"] = []
810810

811-
if interval := call.data.get(ATTR_INTERVAL):
811+
if (interval := call.data.get(ATTR_INTERVAL)) is not None:
812812
data["everyX"] = interval
813813

814-
if streak := call.data.get(ATTR_STREAK):
814+
if (streak := call.data.get(ATTR_STREAK)) is not None:
815815
data["streak"] = streak
816816

817817
try:

homeassistant/components/homeassistant_connect_zbt2/hardware.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
@callback
2222
def async_info(hass: HomeAssistant) -> list[HardwareInfo]:
2323
"""Return board info."""
24-
entries = hass.config_entries.async_entries(DOMAIN)
24+
entries = hass.config_entries.async_entries(
25+
DOMAIN, include_ignore=False, include_disabled=False
26+
)
2527
return [
2628
HardwareInfo(
2729
board=None,

0 commit comments

Comments
 (0)