peterpull commited on
Commit
87d54f8
·
1 Parent(s): 7c00855

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -58,8 +58,7 @@ def store_message(chatinput: str, chatresponse: str):
58
 
59
  now = datetime.now() # current time in UTC
60
  aus_time = now.astimezone(AUS_TIMEZONE) # convert to Australia timezone
61
-
62
- timestamp = aus_time.now().strftime("%Y-%m-%d %H:%M:%S")
63
  user_input = f"User: {chatinput}"
64
  chatbot_response = f"Chatbot: {chatresponse}"
65
  separator = "-" * 30
 
58
 
59
  now = datetime.now() # current time in UTC
60
  aus_time = now.astimezone(AUS_TIMEZONE) # convert to Australia timezone
61
+ timestamp = aus_time.strftime("%Y-%m-%d %H:%M:%S")
 
62
  user_input = f"User: {chatinput}"
63
  chatbot_response = f"Chatbot: {chatresponse}"
64
  separator = "-" * 30