From 2aaf68d2412f432f60b42d9bea00bd49a62807f4 Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 14 Sep 2023 13:06:41 -0400 Subject: [PATCH] fix: is_available true by default --- roborock/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roborock/api.py b/roborock/api.py index 3b396db..8e7b097 100644 --- a/roborock/api.py +++ b/roborock/api.py @@ -184,7 +184,7 @@ def __init__(self, endpoint: str, device_info: DeviceData, queue_timeout: int = device_cache[device_info.device.duid] = cache self.cache: dict[CacheableAttribute, AttributeCache] = cache self._listeners: list[Callable[[str, CacheableAttribute, RoborockBase], None]] = [] - self.is_available: bool = False + self.is_available: bool = True self.queue_timeout = queue_timeout def __del__(self) -> None: