Skip to content

Commit 6a21652

Browse files
committed
shorten line
1 parent c603ca6 commit 6a21652

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flask-google-login/user.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ def get(user_id):
2828
def create(id_, name, email, profile_pic):
2929
db = get_db()
3030
db.execute(
31-
"INSERT INTO user (id, name, email, profile_pic) VALUES (?, ?, ?, ?)",
31+
"INSERT INTO user (id, name, email, profile_pic)"
32+
" VALUES (?, ?, ?, ?)",
3233
(id_, name, email, profile_pic),
3334
)
3435
db.commit()

0 commit comments

Comments
 (0)