Codacy issues

This commit is contained in:
Valentin Samir 2016-06-29 20:59:18 +02:00
parent 3334f87601
commit 2fba4183a3
2 changed files with 3 additions and 2 deletions

View File

@ -81,7 +81,7 @@ class User(models.Model):
for ticket_class in ticket_classes:
queryset = ticket_class.objects.filter(user=self)
for ticket in queryset:
ticket.logout(request, session, async_list)
ticket.logout(session, async_list)
queryset.delete()
for future in async_list:
if future:
@ -415,7 +415,7 @@ class Ticket(models.Model):
logger.warning("Error durring SLO %s" % error)
sys.stderr.write("%r\n" % error)
def logout(self, request, session, async_list=None):
def logout(self, session, async_list=None):
"""Send a SLO request to the ticket service"""
# On logout invalidate the Ticket
self.validate = True

View File

@ -54,6 +54,7 @@ def get_user_ticket_request(service):
def get_validated_ticket(service):
"""Return a tick that has being already validated. Used to test SLO"""
(ticket, auth_client) = get_user_ticket_request(service)[1:3]
client = Client()