Skip to content

Commit 2ce9e4e

Browse files
committed
Refactor: 코드 포멧 변경
1 parent 0a0d8e8 commit 2ce9e4e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pyconweb2022/program/viewsets.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88

99

1010
class ProposalViewSet(ReadOnlyModelViewSet):
11-
queryset = (
12-
Proposal.objects.all()
13-
.order_by("track_num")
14-
.order_by("video_open_at")
15-
)
11+
queryset = Proposal.objects.all().order_by("track_num").order_by("video_open_at")
1612
serializer_class = ProposalSerializer
1713
permission_classes = [AllowAny]
1814

0 commit comments

Comments
 (0)