Skip to content

Commit

Permalink
Fix OAuth by reverting a change from 4144ad3
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnans2006 committed Mar 28, 2024
1 parent da16517 commit 8019c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tin/apps/users/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .models import User


def enroll(_sender, user, _request, **_):
def enroll(sender, user, request, **kwargs): # pylint: disable=unused-argument
try:
import_user_object = StudentImportUser.objects.get_or_create(user=user.username)[0]
except StudentImportUser.DoesNotExist:
Expand Down

0 comments on commit 8019c14

Please sign in to comment.