We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d42429f commit c1e496fCopy full SHA for c1e496f
tux/cogs/utility/remindme.py
@@ -22,7 +22,7 @@ def __init__(self, bot: Tux) -> None:
22
async def send_reminder(self, user_id: int, reminder: Reminder) -> None:
23
user = self.bot.get_user(user_id)
24
25
- if not user:
+ if user is None:
26
user = await self.bot.fetch_user(user_id)
27
28
if user is not None:
0 commit comments