Add missing comma in documentation of permission composition

This commit is contained in:
Jerzy Spendel 2018-11-27 12:15:26 +01:00
parent 0f5dfe8b3c
commit 5a19fb026d

View File

@ -113,7 +113,7 @@ Provided they inherit from `rest_framework.permissions.BasePermission`, permissi
return request.method in SAFE_METHODS
class ExampleView(APIView):
permission_classes = (IsAuthenticated|ReadOnly)
permission_classes = (IsAuthenticated|ReadOnly,)
def get(self, request, format=None):
content = {