Skip to content

Commit 4a20c65

Browse files
style: auto fixes from pre-commit hooks
1 parent 75bc3af commit 4a20c65

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tux/cogs/utility/remindme.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
import asyncio
12
import contextlib
23
import datetime
3-
import asyncio
44

55
import discord
6-
from discord.ext import commands, tasks
6+
from discord.ext import commands
77
from loguru import logger
88

99
from prisma.models import Reminder
@@ -20,7 +20,6 @@ def __init__(self, bot: Tux) -> None:
2020
self.remindme.usage = generate_usage(self.remindme)
2121
self._initialized = False
2222

23-
2423
async def send_reminder(self, reminder: Reminder) -> None:
2524
user = self.bot.get_user(reminder.reminder_user_id)
2625
if user is not None:
@@ -68,7 +67,7 @@ async def on_ready(self) -> None:
6867
return
6968

7069
self._initialized = True
71-
70+
7271
reminders = await self.db.reminder.get_all_reminders()
7372
dt_now = datetime.datetime.now(datetime.UTC)
7473

@@ -147,7 +146,7 @@ async def remindme(
147146

148147
embed.add_field(
149148
name="Note",
150-
value="- If you have DMs closed, we will attempt to send it in this channel instead.\n"
149+
value="- If you have DMs closed, we will attempt to send it in this channel instead.\n",
151150
)
152151

153152
except Exception as e:

0 commit comments

Comments
 (0)