Skip to content

Commit 30f8980

Browse files
committed
feat: add imagesetupload delete by UUID endpoint
1 parent e6d0857 commit 30f8980

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/fathomnet/api/imagesetuploads.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,8 @@ def find_by_uuid(uuid: str) -> dto.BImageSetUploadDTO:
6060
"""Get an image set upload by UUID."""
6161
res_json = ImageSetUploads.get(uuid)
6262
return dto.BImageSetUploadDTO.from_dict(res_json)
63+
64+
65+
def delete_by_uuid(uuid: str) -> None:
66+
"""Delete an image set upload by UUID."""
67+
ImageSetUploads.delete(uuid, parse_json=False)

0 commit comments

Comments
 (0)