Skip to content

Commit

Permalink
HOTFIX: record_type 파라미터 view에서 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
leehjhjhj committed Mar 21, 2024
1 parent 9c905b1 commit f90f2ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sportslive/record/presentation/record_get_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ def __init__(self, *args, **kwargs):
self._record_get_service = RecordContainer.record_get_service()

@swagger_auto_schema(responses={"200": ""})
def get(self, request, record_id: int, record_type: str):
def get(self, request, record_id: int):
response = self._record_get_service.get_record_detail(record_id)
return Response(response, status=status.HTTP_200_OK)

0 comments on commit f90f2ca

Please sign in to comment.