Skip to content

Commit bacb763

Browse files
committed
Fix format
1 parent acf617b commit bacb763

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

watchlist/extensions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ class Base(DeclarativeBase):
1313

1414
@login_manager.user_loader
1515
def load_user(user_id):
16-
from watchlist.models import User
17-
user = db.session.get(User, int(user_id))
18-
return user
16+
from watchlist.models import User
17+
user = db.session.get(User, int(user_id))
18+
return user
1919

2020

2121
login_manager.login_view = 'login'

0 commit comments

Comments
 (0)