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")