feat(bulk_download): update response model, messages

This commit is contained in:
psychedelicious
2024-02-20 22:15:01 +11:00
parent 9e296f6916
commit a37b60db13
2 changed files with 7 additions and 11 deletions

View File

@ -20,9 +20,6 @@ class BulkDownloadTargetException(BulkDownloadException):
class BulkDownloadParametersException(BulkDownloadException):
"""Exception raised when a bulk download parameter is invalid."""
def __init__(
self,
message="The bulk download parameters are invalid, either an array of image names or a board id must be provided",
):
def __init__(self, message="No image names or board ID provided"):
super().__init__(message)
self.message = message