Skip to content

Commit d5ee232

Browse files
committed
Run ruff format
1 parent 5bae2d0 commit d5ee232

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

deebot_client/events/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ class FirmwareEvent(Event):
309309

310310
version: str
311311

312+
312313
@dataclass(frozen=True)
313314
class CustomCutModeEvent(EnableEvent):
314315
"""custom cut event."""
315-

deebot_client/hardware/deebot/xmp9ds.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
from deebot_client.commands.json.charge_state import GetChargeState
3636
from deebot_client.commands.json.clean import CleanV2, GetCleanInfoV2
3737
from deebot_client.commands.json.custom import CustomCommand
38-
from deebot_client.commands.json.custom_cut_mode import GetCustomCutMode, SetCustomCutMode
38+
from deebot_client.commands.json.custom_cut_mode import (
39+
GetCustomCutMode,
40+
SetCustomCutMode,
41+
)
3942
from deebot_client.commands.json.error import GetError
4043
from deebot_client.commands.json.life_span import GetLifeSpan, ResetLifeSpan
4144
from deebot_client.commands.json.network import GetNetInfo
@@ -109,7 +112,7 @@
109112
cut_direction=CapabilitySet(
110113
CutDirectionEvent, [GetCutDirection()], SetCutDirection
111114
),
112-
custom_cut_mode =CapabilitySetEnable(
115+
custom_cut_mode=CapabilitySetEnable(
113116
CustomCutModeEvent, [GetCustomCutMode()], SetCustomCutMode
114117
),
115118
child_lock=CapabilitySetEnable(

0 commit comments

Comments
 (0)