Skip to content

Commit 795f94c

Browse files
committed
Merge branch 'support/11.x' into dev
2 parents 45da137 + 2574d4f commit 795f94c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

simplipy/system/v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def light(self) -> bool:
255255
)
256256

257257
@property # type: ignore
258-
@guard_from_missing_data(True)
258+
@guard_from_missing_data(False)
259259
def offline(self) -> bool:
260260
"""Return whether the system is offline.
261261

tests/system/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def test_missing_property(
100100
)
101101
systems = await simplisafe.async_get_systems()
102102
system = systems[TEST_SYSTEM_ID]
103-
assert system.offline is True
103+
assert system.offline is False
104104
assert any(
105105
"SimpliSafe didn't return data for property: offline" in e.message
106106
for e in caplog.records

tests/system/test_v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Define tests for v3 System objects."""
2-
# pylint: disable=too-many-arguments,unused-argument
2+
# pylint: disable=protected-access,too-many-arguments,unused-argument
33
from datetime import datetime
44
import logging
55

0 commit comments

Comments
 (0)