Skip to content

Commit 1ed6855

Browse files
lilyyduCopilot
andauthored
Update packages/common/src/common/storage/list_local_storage.py
Co-authored-by: Copilot <[email protected]>
1 parent 7a591c5 commit 1ed6855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common/src/common/storage/list_local_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ def filter(self, predicate: Callable[[V, int], bool]) -> List[V]:
7070
return [item for i, item in enumerate(self._items) if predicate(item, i)]
7171

7272
async def async_filter(self, predicate: Callable[[V, int], bool]) -> List[V]:
73-
return await self.filter(predicate)
73+
return self.filter(predicate)

0 commit comments

Comments
 (0)