Skip to content

Commit eddf3f7

Browse files
committed
Try 4
1 parent be24c30 commit eddf3f7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

plugwise_usb/nodes/sed.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ async def set_sleep_duration(self, minutes: int) -> bool:
386386
# endregion
387387
# region Properties
388388
@property
389-
@raise_not_loaded
389+
# @raise_not_loaded
390390
def awake_duration(self) -> int:
391391
"""Duration in seconds a battery powered devices is awake."""
392392
if self._new_battery_config.awake_duration is not None:
@@ -396,7 +396,7 @@ def awake_duration(self) -> int:
396396
return SED_DEFAULT_AWAKE_DURATION
397397

398398
@property
399-
@raise_not_loaded
399+
#@raise_not_loaded
400400
def battery_config(self) -> BatteryConfig:
401401
"""Battery related configuration settings."""
402402
return BatteryConfig(
@@ -408,7 +408,7 @@ def battery_config(self) -> BatteryConfig:
408408
)
409409

410410
@property
411-
@raise_not_loaded
411+
#@raise_not_loaded
412412
def clock_interval(self) -> int:
413413
"""Return the clock interval value."""
414414
if self._new_battery_config.clock_interval is not None:
@@ -418,7 +418,7 @@ def clock_interval(self) -> int:
418418
return SED_DEFAULT_CLOCK_INTERVAL
419419

420420
@property
421-
@raise_not_loaded
421+
#@raise_not_loaded
422422
def clock_sync(self) -> bool:
423423
"""Indicate if the internal clock must be synced."""
424424
if self._new_battery_config.clock_sync is not None:
@@ -428,7 +428,7 @@ def clock_sync(self) -> bool:
428428
return SED_DEFAULT_CLOCK_SYNC
429429

430430
@property
431-
@raise_not_loaded
431+
#@raise_not_loaded
432432
def maintenance_interval(self) -> int:
433433
"""Return the maintenance interval value.
434434
@@ -446,7 +446,7 @@ def sed_config_task_scheduled(self) -> bool:
446446
return self._sed_config_task_scheduled
447447

448448
@property
449-
@raise_not_loaded
449+
#@raise_not_loaded
450450
def sleep_duration(self) -> int:
451451
"""Return the sleep duration value in minutes.
452452

0 commit comments

Comments
 (0)