File tree 1 file changed +12
-6
lines changed 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -398,9 +398,12 @@ def perform_create(self, serializer):
398
398
serializer .save ()
399
399
400
400
401
- class OrganizationsViewSet (APIv3Settings , NestedViewSetMixin ,
402
- OrganizationQuerySetMixin ,
403
- ReadOnlyModelViewSet ):
401
+ class OrganizationsViewSet (
402
+ APIv3Settings ,
403
+ NestedViewSetMixin ,
404
+ OrganizationQuerySetMixin ,
405
+ ReadOnlyModelViewSet ,
406
+ ):
404
407
405
408
model = Organization
406
409
lookup_field = 'slug'
@@ -427,9 +430,12 @@ def get_queryset(self):
427
430
return super ().get_queryset ()
428
431
429
432
430
- class OrganizationsProjectsViewSet (APIv3Settings , NestedViewSetMixin ,
431
- OrganizationQuerySetMixin ,
432
- ReadOnlyModelViewSet ):
433
+ class OrganizationsProjectsViewSet (
434
+ APIv3Settings ,
435
+ NestedViewSetMixin ,
436
+ OrganizationQuerySetMixin ,
437
+ ReadOnlyModelViewSet
438
+ ):
433
439
434
440
model = Project
435
441
lookup_field = 'slug'
You can’t perform that action at this time.
0 commit comments