Skip to content

Commit 7b7d6cf

Browse files
committed
Correct indentation
1 parent 2c4da4c commit 7b7d6cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HelloFlask/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ def home():
88

99
@app.route('/about')
1010
def about():
11-
return render_template("about.html", title = "About us")
11+
return render_template("about.html", title = "About us")
1212

1313
@app.route('/contact')
1414
def contact():
15-
return render_template("contact.html", title = "Contact us")
15+
return render_template("contact.html", title = "Contact us")
1616

1717
@app.route('/hello/<name>')
1818
def hello_there(name):
@@ -28,4 +28,4 @@ def hello_there(name):
2828

2929
@app.route('/api/data')
3030
def get_data():
31-
return app.send_static_file('data.json')
31+
return app.send_static_file('data.json')

0 commit comments

Comments
 (0)