Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
core: sorted imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikuncar committed Jun 28, 2018
1 parent 7b66dea commit d8ec54f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions flask_security/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
import pkg_resources
from flask import current_app, render_template
from flask_babelex import Domain
from flask_login import AnonymousUserMixin, LoginManager
from flask_login import UserMixin as BaseUserMixin
from flask_login import AnonymousUserMixin, LoginManager, current_user
from flask_login import current_user
from flask_principal import Identity, Principal, RoleNeed, UserNeed, \
identity_loaded
from itsdangerous import URLSafeTimedSerializer
Expand All @@ -28,9 +29,10 @@
from .forms import ChangePasswordForm, ConfirmRegisterForm, \
ForgotPasswordForm, LoginForm, PasswordlessLoginForm, RegisterForm, \
ResetPasswordForm, SendConfirmationForm
from .utils import _
from .utils import config_value as cv
from .utils import _, get_config, hash_data, localize_callback, string_types, \
url_for_security, verify_hash, send_mail, verify_and_update_password
from .utils import get_config, hash_data, localize_callback, send_mail, \
string_types, url_for_security, verify_and_update_password, verify_hash
from .views import create_blueprint

# Convenient references
Expand Down

0 comments on commit d8ec54f

Please sign in to comment.