Skip to content

Commit

Permalink
fixed missing imports in views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Bojan Kuzmanovic committed May 31, 2024
1 parent a9352ca commit 871f031
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drf_social_oauth2/views.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from json import loads as json_loads

from django.db import IntegrityError
from django.urls import reverse
from django.utils.decorators import method_decorator
from django.views.decorators.csrf import csrf_exempt
Expand All @@ -19,7 +20,7 @@
)

from rest_framework.permissions import AllowAny, IsAuthenticated
from rest_framework.status import HTTP_204_NO_CONTENT, HTTP_400_BAD_REQUEST
from rest_framework.status import HTTP_204_NO_CONTENT, HTTP_400_BAD_REQUEST, HTTP_500_INTERNAL_SERVER_ERROR
from rest_framework.response import Response
from rest_framework.request import Request
from rest_framework.views import APIView
Expand Down

0 comments on commit 871f031

Please sign in to comment.