Skip to content

Commit c4a61c9

Browse files
committed
Linter
1 parent 1fe4057 commit c4a61c9

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

readthedocs/api/v3/views.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,12 @@ def perform_create(self, serializer):
398398
serializer.save()
399399

400400

401-
class OrganizationsViewSet(APIv3Settings, NestedViewSetMixin,
402-
OrganizationQuerySetMixin,
403-
ReadOnlyModelViewSet):
401+
class OrganizationsViewSet(
402+
APIv3Settings,
403+
NestedViewSetMixin,
404+
OrganizationQuerySetMixin,
405+
ReadOnlyModelViewSet,
406+
):
404407

405408
model = Organization
406409
lookup_field = 'slug'
@@ -427,9 +430,12 @@ def get_queryset(self):
427430
return super().get_queryset()
428431

429432

430-
class OrganizationsProjectsViewSet(APIv3Settings, NestedViewSetMixin,
431-
OrganizationQuerySetMixin,
432-
ReadOnlyModelViewSet):
433+
class OrganizationsProjectsViewSet(
434+
APIv3Settings,
435+
NestedViewSetMixin,
436+
OrganizationQuerySetMixin,
437+
ReadOnlyModelViewSet
438+
):
433439

434440
model = Project
435441
lookup_field = 'slug'

0 commit comments

Comments
 (0)