From 0c817aeb1c5d9cd34331dfb73c85be72918da2ff Mon Sep 17 00:00:00 2001
From: Ryan Melvin <rmelvin@uabmc.edu>
Date: Mon, 8 May 2023 15:26:15 -0500
Subject: [PATCH] current time not needed

---
 app.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app.py b/app.py
index 8f26355..1a5cc7f 100644
--- a/app.py
+++ b/app.py
@@ -173,8 +173,7 @@ with st.form(key="query_form"):
                 INSERT INTO [DS_apps].[dbo].[mpog_helper] (user_input, llm_response, request_sent, response_received)
                 VALUES (?, ?, ?, ?)
                 """
-
-                current_time = datetime.datetime.now()
+                
                 cursor.execute(query, (query, result.content, submit_time, response_time))
 
                 st.success("Your idea has been recorded and may be reviewed by the MPOG Steering Committee.")
-- 
GitLab