Skip to content

Commit ff17d79

Browse files
epenetbdraco
andauthored
Bump wakeonlan to 3.1.0 (home-assistant#146655)
Co-authored-by: J. Nick Koston <[email protected]>
1 parent a820100 commit ff17d79

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

homeassistant/components/samsungtv/entity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ async def async_added_to_hass(self) -> None:
7676

7777
def _wake_on_lan(self) -> None:
7878
"""Wake the device via wake on lan."""
79-
send_magic_packet(self._mac, ip_address=self._host)
79+
send_magic_packet(self._mac, ip_address=self._host) # type: ignore[arg-type]
8080
# If the ip address changed since we last saw the device
8181
# broadcast a packet as well
82-
send_magic_packet(self._mac)
82+
send_magic_packet(self._mac) # type: ignore[arg-type]
8383

8484
async def async_turn_off(self, **kwargs: Any) -> None:
8585
"""Turn the device off."""

homeassistant/components/samsungtv/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"getmac==0.9.5",
3939
"samsungctl[websocket]==0.7.1",
4040
"samsungtvws[async,encrypted]==2.7.2",
41-
"wakeonlan==2.1.0",
41+
"wakeonlan==3.1.0",
4242
"async-upnp-client==0.44.0"
4343
],
4444
"ssdp": [

homeassistant/components/wake_on_lan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def send_magic_packet(call: ServiceCall) -> None:
5252
)
5353

5454
await hass.async_add_executor_job(
55-
partial(wakeonlan.send_magic_packet, mac_address, **service_kwargs)
55+
partial(wakeonlan.send_magic_packet, mac_address, **service_kwargs) # type: ignore[arg-type]
5656
)
5757

5858
hass.services.async_register(

homeassistant/components/wake_on_lan/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"config_flow": true,
66
"documentation": "https://www.home-assistant.io/integrations/wake_on_lan",
77
"iot_class": "local_push",
8-
"requirements": ["wakeonlan==2.1.0"]
8+
"requirements": ["wakeonlan==3.1.0"]
99
}

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)