Skip to content

Commit

Permalink
Fix ruff import linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
CarrotManMatt committed May 14, 2024
1 parent 8f65658 commit f790994
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cogs/send_get_roles_reminders.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@


import contextlib
import datetime
import functools
import logging
from logging import Logger
from typing import Final
from typing import TYPE_CHECKING, Final

import discord
from discord import AuditLogAction
Expand All @@ -26,6 +25,9 @@
capture_guild_does_not_exist_error,
)

if TYPE_CHECKING:
import datetime

logger: Logger = logging.getLogger("TeX-Bot")


Expand Down

0 comments on commit f790994

Please sign in to comment.