fixed math
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-10-28 19:57:21 +01:00
parent 70b154d111
commit b4458ae536
3 changed files with 7 additions and 5 deletions

7
app.py
View File

@@ -1,7 +1,8 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def calculatehard():
result = 3 * 4 + 12
return str(result)
def calculate():
result = 3 * (4 + 12)
return str(result)