Skip to content

Commit

Permalink
fix: is_available true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Lash-L committed Sep 14, 2023
1 parent f4e82a3 commit 2aaf68d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roborock/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2aaf68d

Please sign in to comment.