refactor: Remove TODO

This commit is contained in:
Igor Ilic 2025-12-15 17:27:38 +01:00
parent 031cc46ca7
commit 87d8fe0da5

View file

@ -222,7 +222,7 @@ def get_datasets_router() -> APIRouter:
response_model=None, response_model=None,
responses={404: {"model": ErrorResponseDTO}}, responses={404: {"model": ErrorResponseDTO}},
) )
async def delete_data( # TODO: Is this endpoint needed? It seems redundant with data deletion elsewhere async def delete_data(
dataset_id: UUID, data_id: UUID, user: User = Depends(get_authenticated_user) dataset_id: UUID, data_id: UUID, user: User = Depends(get_authenticated_user)
): ):
""" """