fossasia / open-event-server

Missing whitespace after ,, ;, or : FLK-E231
Style
Minor
2 occurrences in this check
missing whitespace after ','
 4from rest_framework.exceptions import PermissionDenied
 5
 6from .serializer import EventSubTopicSerializer
 7from .models import EventSubTopic,EventTopic 8
 9class EventSubTopicPost(generics.CreateAPIView):
10    """
missing whitespace after ','
1from django.urls import path
2
3from .views import EventSubTopicPost, EventSubTopicList,EventSubTopicRetrieveUpdateDestroy4
5urlpatterns = [
6    path("event-sub-topics/", EventSubTopicPost.as_view(), name="event_sub_topic_list_create"),