Skip to content

Commit b244436

Browse files
committed
Fix sensitivity_level typing and description
1 parent e7d1cd6 commit b244436

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise_usb/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,14 +233,14 @@ class MotionConfig:
233233
Attributes:
234234
reset_timer: int | None: Motion reset timer in minutes before the motion detection is switched off.
235235
daylight_mode: bool | None: Motion detection when light level is below threshold.
236-
sensitivity_level: MotionSensitivity | None: Motion sensitivity level.
236+
sensitivity_level: int | None: Motion sensitivity level.
237237
dirty: bool: Settings changed, device update pending
238238
239239
"""
240240

241241
daylight_mode: bool | None = None
242242
reset_timer: int | None = None
243-
sensitivity_level: MotionSensitivity | None = None
243+
sensitivity_level: int | None = None
244244
dirty: bool = False
245245

246246

0 commit comments

Comments
 (0)