Add missing comma in documentation of permission composition (#6336)

This commit is contained in:
JerzySpendel 2018-12-07 22:44:57 +01:00 committed by Ryan P Kilby
parent facb433c89
commit 627eeb8202

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 = {