Skip to content

Commit 8849dc9

Browse files
committed
bump version and release beta
1 parent f8600a6 commit 8849dc9

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

custom_components/mammotion/camera.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ async def handle_move_left(call: ServiceCall) -> None:
373373
speed=speed, use_wifi=use_wifi
374374
)
375375

376-
async def handle_move_right(call) -> None:
376+
async def handle_move_right(call: ServiceCall) -> None:
377377
entity_id = call.data["entity_id"]
378378

379379
# Check if speed parameter exists and validate it
@@ -404,7 +404,7 @@ async def handle_move_right(call) -> None:
404404
speed=speed, use_wifi=use_wifi
405405
)
406406

407-
async def handle_move_backward(call) -> None:
407+
async def handle_move_backward(call: ServiceCall) -> None:
408408
entity_id = call.data["entity_id"]
409409

410410
# Check if speed parameter exists and validate it

custom_components/mammotion/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"domain": "mammotion",
33
"name": "Mammotion",
4-
"version": "0.5.38",
4+
"version": "0.5.39",
55
"issue_tracker": "https://github.com/mikey0000/Mammotion-HA/issues",
66
"integration_type": "device",
77
"bluetooth": [
@@ -22,5 +22,5 @@
2222
"documentation": "https://github.com/mikey0000/Mammotion-HA/wiki",
2323
"loggers": ["pymammotion"],
2424
"iot_class": "local_push",
25-
"requirements": ["pymammotion==0.7.96"]
25+
"requirements": ["pymammotion==0.7.97"]
2626
}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mammotion-ha"
3-
version = "0.5.38"
3+
version = "0.5.39"
44
description = "Mammotion integration for HACS"
55
authors = [
66
{name = "Michael Arthur", email = "michael@jumblesoft.co.nz"},
@@ -9,7 +9,7 @@ authors = [
99
readme = "README.md"
1010
requires-python = ">=3.14.2"
1111
dependencies = [
12-
"pymammotion==0.7.96",
12+
"pymammotion==0.7.97",
1313
"homeassistant>=2026.1.0",
1414
"autotyping>=24.3.0",
1515
"websockets>=15.0.1",

0 commit comments

Comments
 (0)