From 87e7297faedaa38db959d97215df4c18202d56e4 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 2 Jun 2025 01:32:10 +0200 Subject: [PATCH] fix(lint): sort imports alphabetically --- api/funkwhale_api/playlists/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/funkwhale_api/playlists/views.py b/api/funkwhale_api/playlists/views.py index 5e04c237e..18bcaa2a2 100644 --- a/api/funkwhale_api/playlists/views.py +++ b/api/funkwhale_api/playlists/views.py @@ -7,6 +7,7 @@ from django.db.models import Count from drf_spectacular.utils import extend_schema from rest_framework import exceptions, mixins, status, viewsets from rest_framework.decorators import action +from rest_framework.pagination import PageNumberPagination from rest_framework.parsers import FormParser, JSONParser, MultiPartParser from rest_framework.renderers import JSONRenderer from rest_framework.response import Response @@ -20,7 +21,6 @@ from funkwhale_api.music import utils as music_utils from funkwhale_api.users.oauth import permissions as oauth_permissions from . import filters, models, parsers, renderers, serializers -from rest_framework.pagination import PageNumberPagination logger = logging.getLogger(__name__)