Minio.remove_objects expects a list of DeleteObjects, but the documentation uses a map. If a map is passed to Minio.remove_objects, it will silently fail, and the objects will not be deleted. This PR corrects the documentation to pass a list instead of a map to Minio.remove_objects.
Minio.remove_objects
expects a list ofDeleteObject
s, but the documentation uses amap
. If amap
is passed toMinio.remove_objects
, it will silently fail, and the objects will not be deleted. This PR corrects the documentation to pass alist
instead of amap
toMinio.remove_objects
.