Skip to content

Commit

Permalink
Merge branch 'master' into list_objects_can_filter_by_tags
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybat authored Jan 7, 2024
2 parents b789712 + fbcfca1 commit a384e99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion minio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

__title__ = "minio-py"
__author__ = "MinIO, Inc."
__version__ = "7.2.3"
__version__ = "7.2.4"
__license__ = "Apache 2.0"
__copyright__ = "Copyright 2015, 2016, 2017, 2018, 2019, 2020 MinIO, Inc."

Expand Down
5 changes: 3 additions & 2 deletions minio/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import itertools
import os
import tarfile
from collections.abc import Iterable
from datetime import datetime, timedelta
from io import BytesIO
from random import random
Expand Down Expand Up @@ -2139,7 +2140,7 @@ def _delete_objects(
def remove_objects(
self,
bucket_name: str,
delete_object_list: Iterator[DeleteObject],
delete_object_list: Iterable[DeleteObject],
bypass_governance_mode: bool = False,
) -> Iterator[DeleteError]:
"""
Expand Down Expand Up @@ -2946,7 +2947,7 @@ def set_object_retention(
def upload_snowball_objects(
self,
bucket_name: str,
object_list: Iterator[SnowballObject],
object_list: Iterable[SnowballObject],
metadata: DictType | None = None,
sse: Sse | None = None,
tags: Tags | None = None,
Expand Down

0 comments on commit a384e99

Please sign in to comment.