I don't know what's wrong exactly
I'm following someone explains how to create a simple bot by flask and Twilio
then when I'm running flask showing me this problem
"File "C:\Users\moham\Desktop\FLASK_APP\app.py", line 23 else: ^ IndentationError: unindent does not match any outer indentation level"
here was the problem is:
def process_msg(msg):
response = ""
if msg == "hi":
response = "Hello, welcome to the stock market bot!"
else:
response = "Please type hi to get started."
return response
It said line 23 !! in (else:)
I hope you understanding me!
thank you in advance