Make PyLint happy with the models code

This commit is contained in:
2018-07-08 19:47:05 +02:00
parent 531faa1ce7
commit d14d32767c
3 changed files with 14 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ class AnonymousUser(BaseAnonymousUser):
@user_logged_in.connect
def login_handler(app, user):
def login_handler(app, user): # pylint: disable=unused-argument
"""Signal handler to be called when a user successfully logs in
"""
@@ -47,7 +47,7 @@ def login_handler(app, user):
@user_logged_out.connect
def logout_handler(app, user):
def logout_handler(app, user): # pylint: disable=unused-argument
"""Signal handler to be called when a user logs out
"""