fossasia / open-event-server

Blank line contains whitespace FLK-W293
Style
Minor
3 occurrences in this check
blank line contains whitespace
64            raise PermissionDenied(detail='Admin access is required.')
65
66        return super().delete(request, *args, **kwargs)
67    
blank line contains whitespace
38                queryset = queryset.all()
39
40        return queryset
41    42class EventSubTopicRetrieveUpdateDestroy(generics.RetrieveUpdateDestroyAPIView):
43    """
44    Retrieve, update or delete event sub topics
blank line contains whitespace
 8
 9    class Meta:
10        unique_together = (('slug', 'event_topic'),)
11        12    def __str__(self):
13        return self.name