Skip to content

Commit b4f4a93

Browse files
committed
Made application.py PEP8 complient by fixing two lines for E302 and W292.
1 parent e92b62b commit b4f4a93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

application.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from flask import Flask
22
app = Flask(__name__)
33

4+
45
@app.route("/")
56
def hello():
6-
return "Hello World!"
7+
return "Hello World!"

0 commit comments

Comments
 (0)