Small SQL formatting fix in tutorial

Found a small formatting slip while I was going through the tutorial, so I changed the line to be consistent with the rest of the SQL syntax.
This commit is contained in:
Elahi-cs 2021-07-07 18:18:49 +02:00 committed by Elahi-cs
parent e85ae9fb90
commit 84c4da9459

View file

@ -270,7 +270,7 @@ messages.
with app.app_context():
assert get_db().execute(
"select * from user where username = 'a'",
"SELECT * FROM user WHERE username = 'a'",
).fetchone() is not None