diff --git a/core/blocklist.py b/core/blocklist.py index 60a90f3892..8967b24110 100644 --- a/core/blocklist.py +++ b/core/blocklist.py @@ -103,7 +103,7 @@ async def is_id_blocked(self, user_or_role_id: int) -> Tuple[bool, Optional[Bloc Returns ------- - True if there is an active block for the given ID + Tuple[bool, Optional[BlocklistEntry]] """ result = await self.blocklist_collection.find_one({"id": user_or_role_id})