次の python コードを書きましたが、問題の原因がわかりませんが、次のエラー メッセージが表示されます。
def post(self): ^ IndentationError: unindent は外側のインデント レベルと一致しません
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.out.write(form)
def post(self):
self.response.out.write("valid")
app = webapp2.WSGIApplication([('/', MainHandler)],debug=True)
どんな助けでも大歓迎です