Update 'app.py'

This commit is contained in:
Artsem Khatsko 2022-06-02 13:36:51 +02:00
parent 6c6919eaa0
commit 93e892ab35

4
app.py
View File

@ -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