diff --git a/app.py b/app.py index a827330..bdc2d87 100644 --- a/app.py +++ b/app.py @@ -6,8 +6,10 @@ app = Flask(__name__) @app.route('/test_app1', methods=['POST', 'GET']) def route1(): + a = 10 + b = 11 try: - return """This is automatically updating application 123""" + return """This is automatically updating application """+ str(a+b) except: return "400", 400