Skip to content

Commit c01feb4

Browse files
committed
black
1 parent 8dcde8f commit c01feb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sponsor/viewsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class SponsorViewSet(ModelViewSet):
1212
serializer_class = SponsorSerializer
1313
permission_classes = [IsOwnerOrReadOnly] # 본인 소유만 수정가능
14-
http_method_names = ["get", "post"] # 지금은 조회/등록만 가능 TODO: 추후 수정기능 추가
14+
http_method_names = ["get", "post"] # 지금은 조회/등록만 가능 TODO: 추후 수정기능 추가
1515

1616
def get_queryset(self):
1717
return Sponsor.objects.all()

0 commit comments

Comments
 (0)