From ebec5d91d084370faffcafadb53f9158a49becba Mon Sep 17 00:00:00 2001 From: Grant Harris Date: Thu, 3 Sep 2026 11:04:05 -0600 Subject: [PATCH] remove student discord ID from queue history CSV That field is ignored when retrieving the table data, so including it in the header was offsetting some of the column names. --- src/data_access/queue_history_dao.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data_access/queue_history_dao.py b/src/data_access/queue_history_dao.py index 9f7f645..10d995d 100644 --- a/src/data_access/queue_history_dao.py +++ b/src/data_access/queue_history_dao.py @@ -75,6 +75,7 @@ async def get_queue_history_as_csv() -> discord.File: """ ) header = [row["COLUMN_NAME"] for row in await cursor.fetchall()] + header.remove("student_discord_id") header.append("time_in_queue") header.append("time_helped")