Skip to content

Commit 58aed20

Browse files
committed
clean up comments
1 parent 94e259d commit 58aed20

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

datajoint/s3.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ class Folder:
1515
A Folder instance manipulates a flat folder of objects within an S3-compatible object store
1616
"""
1717
def __init__(self, endpoint, bucket, access_key, secret_key, *, secure=False, proxy_server=None, **_):
18-
# proxy_server: string, like "https://PROXYSERVER:PROXYPORT/"
19-
# self.client = minio.Minio(endpoint, access_key=access_key, secret_key=secret_key,
20-
# secure=secure)
21-
if proxy_server: # "http://www-cache.gwdg.de:3128"
18+
if proxy_server:
19+
# from https://docs.min.io/docs/python-client-api-reference
2220
http_client = urllib3.ProxyManager(
2321
proxy_server,
2422
timeout=urllib3.Timeout.DEFAULT_TIMEOUT,

0 commit comments

Comments
 (0)