Skip to content

Commit f99f9c6

Browse files
committed
chore: Fix typing for InMemoryCache
1 parent 0fc7200 commit f99f9c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

roborock/devices/cache.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ async def set(self, value: CacheData) -> None:
4747
class InMemoryCache(Cache):
4848
"""In-memory cache implementation."""
4949

50-
def __init__(self):
50+
def __init__(self) -> None:
51+
"""Initialize the in-memory cache."""
5152
self._data = CacheData()
5253

5354
async def get(self) -> CacheData:

0 commit comments

Comments
 (0)