abdullahalioo commited on
Commit
a11713b
·
verified ·
1 Parent(s): d576b7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ def chatbot(message):
10
  message = message.lower()
11
  if "time" in message:
12
  now_pk = datetime.now(pakistan_tz)
13
- return f"The current time in Pakistan is: {now_pk.strftime('%I:%M %p')}"
14
  else:
15
  return "I can only tell you the current time in Pakistan. Try asking: 'What is the time?'"
16
 
 
10
  message = message.lower()
11
  if "time" in message:
12
  now_pk = datetime.now(pakistan_tz)
13
+ return f"{now_pk.strftime('%I:%M %p')}"
14
  else:
15
  return "I can only tell you the current time in Pakistan. Try asking: 'What is the time?'"
16