Skip to content

Commit

Permalink
Remove old List use introduced by another branch from base_store.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gycsaba96 authored and diegogangl committed Dec 15, 2024
1 parent 4a4498c commit 95e33bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GTG/core/base_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def remove(self, item_id: UUID) -> None:
self.emit('removed', str(item_id))


def batch_remove(self,item_ids: List[UUID]) -> None:
def batch_remove(self,item_ids: list[UUID]) -> None:
"""Remove multiple items, ensuring nothing gets deleted twice"""
for key in item_ids:
if key in self.lookup:
Expand Down

0 comments on commit 95e33bc

Please sign in to comment.