Skip to content
This repository was archived by the owner on Apr 28, 2020. It is now read-only.

Commit

Permalink
Fix Werkzeug imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Feb 14, 2020
1 parent e43a336 commit 6f6e668
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lastuser_core/models/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from datetime import timedelta

from flask import request
from werkzeug import cached_property
from werkzeug.utils import cached_property

from ua_parser import user_agent_parser

Expand Down
3 changes: 2 additions & 1 deletion lastuser_core/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
from sqlalchemy.ext.hybrid import hybrid_property
from sqlalchemy.orm import defer, deferred

from werkzeug import cached_property, check_password_hash
from werkzeug.security import check_password_hash
from werkzeug.utils import cached_property

import bcrypt
import phonenumbers
Expand Down

0 comments on commit 6f6e668

Please sign in to comment.