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 trial

Python Flask with SQLAlchemy Basics Creating a Basic Website with Flask Create a Flask App

Looks like issue in challenge task?

when typing from flask import Flask

app = Flask(_ name _)

I always get AssertionError: Regex didn't match: 'Flask[\r\n]{3}app\s*=\s*Flask\(\s*\\_name\_\_\s*\)' not found in 'from flask import Flask \n\n\napp = Flask(name_)' : There should be 2 blank lines after imports.

Regardless of number of blank lines after imports, also the regexp asserted here looks strange

app.py
from flask import Flask 


app = Flask(__name__)

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,426 Points

In the included app.py file shown above, there is a blank space following import Flask. This space will not match the regex.