Skip to content

Commit

Permalink
Fix PEP8 error.
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed Mar 6, 2015
1 parent 248ea5d commit a458168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flask_security/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
:license: MIT, see LICENSE for more details.
"""

__version__ = '1.7.4'

from .core import Security, RoleMixin, UserMixin, AnonymousUser, current_user
from .datastore import SQLAlchemyUserDatastore, MongoEngineUserDatastore, PeeweeUserDatastore
from .decorators import auth_token_required, http_auth_required, \
Expand All @@ -21,3 +19,5 @@
from .signals import confirm_instructions_sent, password_reset, \
reset_password_instructions_sent, user_confirmed, user_registered
from .utils import login_user, logout_user, url_for_security

__version__ = '1.7.4'

0 comments on commit a458168

Please sign in to comment.