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 59cca70 commit f5b07c1Copy full SHA for f5b07c1
testcontainers/minio.py
@@ -36,7 +36,7 @@ def get_client(self, **kwargs) -> Minio:
36
"""Returns a Minio client to connect to the container.
37
38
Returns:
39
- Minio: Python Minio Client according to
+ Minio: Python Minio Client according to
40
https://min.io/docs/minio/linux/developers/python/API.html
41
"""
42
return Minio(
@@ -55,7 +55,7 @@ def get_config(self) -> MinioConfig:
55
56
return {
57
"endpoint": f"{self.get_container_host_ip()}" +
58
- f":{self.get_exposed_port(self.port_to_expose)}",
+ f":{self.get_exposed_port(self.port_to_expose)}",
59
"access_key": self.access_key,
60
"secret_key": self.secret_key,
61
}
0 commit comments