Browse Source

fix lint issue

pull/2079/head
Clovin 1 year ago
parent
commit
d1eb66709c
2 changed files with 2 additions and 2 deletions
  1. 2
      backend/social/okta.py
  2. 2
      backend/social/views.py

2
backend/social/okta.py

@ -1,6 +1,6 @@
from allauth.socialaccount.providers.oauth2.client import OAuth2Client
from allauth.socialaccount.providers.okta.views import OktaOAuth2Adapter from allauth.socialaccount.providers.okta.views import OktaOAuth2Adapter
from dj_rest_auth.registration.views import SocialLoginView from dj_rest_auth.registration.views import SocialLoginView
from allauth.socialaccount.providers.oauth2.client import OAuth2Client
class OktaLogin(SocialLoginView): class OktaLogin(SocialLoginView):

2
backend/social/views.py

@ -1,6 +1,6 @@
from django.conf import settings
from rest_framework.response import Response from rest_framework.response import Response
from rest_framework.views import APIView from rest_framework.views import APIView
from django.conf import settings
class Social(APIView): class Social(APIView):

Loading…
Cancel
Save