Skip to content

Commit

Permalink
reword
Browse files Browse the repository at this point in the history
  • Loading branch information
MattyTheHacker committed May 11, 2024
1 parent 359621d commit e98ca69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/send_get_roles_reminders.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async def send_get_roles_reminders(self) -> None:
if time_since_role_received <= datetime.timedelta(days=1):
continue

if member not in guild.members: # HACK: Caching errors can cause the member to no longer be part of the guild, so this check must be performed before sending that member a message # noqa: FIX004
if member not in guild.members: # HACK: Caching errors can cause the member to no longer be part of the guild at this point, so this check must be performed before sending that member a message # noqa: FIX004
logger.info(
(
"Member with ID: %s does not need to be sent a reminder "
Expand Down

0 comments on commit e98ca69

Please sign in to comment.