Skip to content

Commit

Permalink
👕 #115: - build: run linters
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvandescheur committed Jun 17, 2024
1 parent c1e602f commit c865686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/openarchiefbeheer/zaken/api/viewsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from django_filters.rest_framework import DjangoFilterBackend
from drf_spectacular.utils import extend_schema, extend_schema_view
from rest_framework import mixins, viewsets
from rest_framework.filters import OrderingFilter
from rest_framework.pagination import PageNumberPagination as _PageNumberPagination
from rest_framework.permissions import IsAuthenticated
from rest_framework.filters import OrderingFilter

from openarchiefbeheer.destruction.api.permissions import CanStartDestructionPermission

Expand All @@ -32,4 +32,4 @@ class ZakenViewSet(mixins.ListModelMixin, viewsets.GenericViewSet):
pagination_class = PageNumberPagination
filter_backends = (DjangoFilterBackend, OrderingFilter)
filterset_class = ZaakFilter
ordering_fields = '__all__'
ordering_fields = "__all__"

0 comments on commit c865686

Please sign in to comment.