Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialjmac pd
11,490 PointsFlask SQLAlchemy -- "you should have __main__ at the end of your code"?
Extra set of eyes? I see nothing wrong here. In fact, the error is referring to the last part of the challenge, which passed.
thanks!
# insert your code here
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello Flask'
if __name__ == '__main__':
app.run(port=8000, host='0.0.0.0')
1 Answer
Megan Amendola
Treehouse TeacherHi! I think what's catching you is a PEP8 guideline. There should be two empty spaces before and after a function so you just need one more empty space after your index function.
# insert your code here
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello Flask'
if __name__ == '__main__':
app.run(port=8000, host='0.0.0.0')
jmac pd
11,490 Pointsjmac pd
11,490 Pointsyeah ok I read through the pep8 guidelines again to make sure I was not missing anything and I guess I missed: "Surround top-level function and class definitions with two blank lines."