From 72b45d9ef8fa39d4fd3419931bc6cb6dbd799194 Mon Sep 17 00:00:00 2001 From: Gabriella Date: Thu, 16 Oct 2025 16:08:27 -0600 Subject: [PATCH] remove old todo from bot_core --- src/py/bot_core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/py/bot_core.py b/src/py/bot_core.py index d716911..4b1675d 100644 --- a/src/py/bot_core.py +++ b/src/py/bot_core.py @@ -260,7 +260,6 @@ async def add_break(interaction: discord.Interaction, start_day: int, start_mont start_date: datetime.date = datetime.date(year=start_year, month=start_month, day=start_day) end_date: datetime.date = datetime.date(year=end_year, month=end_month, day=end_day) - # TODO send to DATABASE_CONN to add callout try: DATABASE_CONN.add_break(user_id=uid, break_start=start_date, break_end=end_date) except UNIQUEVIOLATION: