We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a84eb commit 904494dCopy full SHA for 904494d
1 file changed
roborock/devices/cache.py
@@ -47,7 +47,8 @@ async def set(self, value: CacheData) -> None:
47
class InMemoryCache(Cache):
48
"""In-memory cache implementation."""
49
50
- def __init__(self):
+ def __init__(self) -> None:
51
+ """Initialize the in-memory cache."""
52
self._data = CacheData()
53
54
async def get(self) -> CacheData:
0 commit comments