We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8630f43 commit 0e9c0f1Copy full SHA for 0e9c0f1
1 file changed
deebot_client/events/water_info.py
@@ -33,6 +33,13 @@ class SweepType(IntEnum):
33
DEEP = 2
34
35
36
-WaterAmountEvent = ValueEvent[WaterAmount]
37
-WaterSweepTypeEvent = ValueEvent[SweepType]
38
-MopAttachedEvent = ValueEvent[bool]
+class WaterAmountEvent(ValueEvent[WaterAmount]):
+ """Water amount event."""
+
39
40
+class WaterSweepTypeEvent(ValueEvent[SweepType]):
41
+ """Water sweep type event."""
42
43
44
+class MopAttachedEvent(ValueEvent[bool]):
45
+ """Mop attached event."""
0 commit comments