We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 097b017 commit 81a75cdCopy full SHA for 81a75cd
src/uproot/source/s3.py
@@ -73,7 +73,7 @@ def __init__(
73
region = parsed_query["region"]
74
75
client = Minio(
76
- endpoint,
+ endpoint=endpoint,
77
access_key=access_key,
78
secret_key=secret_key,
79
session_token=session_token,
@@ -83,6 +83,8 @@ def __init__(
83
credentials=credentials,
84
)
85
86
- url = client.get_presigned_url("GET", bucket_name, object_name)
+ url = client.get_presigned_url(
87
+ method="GET", bucket_name=bucket_name, object_name=object_name
88
+ )
89
90
super().__init__(url, **options)
0 commit comments