diff --git a/solution/pulse/api/posts/views.py b/solution/pulse/api/posts/views.py index 422018b..814c033 100644 --- a/solution/pulse/api/posts/views.py +++ b/solution/pulse/api/posts/views.py @@ -60,7 +60,7 @@ class MyFeedListApiView(ListAPIView): offset = serializer.validated_data.get("offset") return self.request.user.posts.order_by("-createdAt").all()[ - offset: offset + limit + offset : offset + limit ] @@ -90,7 +90,7 @@ class UserFeedListApiView(ListAPIView): limit = serializer.validated_data.get("limit") offset = serializer.validated_data.get("offset") - return user.posts.order_by("-createdAt").all()[offset: offset + limit] + return user.posts.order_by("-createdAt").all()[offset : offset + limit] class LikePostApiView(APIView): diff --git a/solution/pulse/api/users/authentication.py b/solution/pulse/api/users/authentication.py index 72a9840..bb8faa1 100644 --- a/solution/pulse/api/users/authentication.py +++ b/solution/pulse/api/users/authentication.py @@ -1,4 +1,3 @@ -import bcrypt import jwt from django.conf import settings from rest_framework.authentication import (