Skip to content

Commit f5b07c1

Browse files
Fix flake8 W291 and E131
1 parent 59cca70 commit f5b07c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcontainers/minio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def get_client(self, **kwargs) -> Minio:
3636
"""Returns a Minio client to connect to the container.
3737
3838
Returns:
39-
Minio: Python Minio Client according to
39+
Minio: Python Minio Client according to
4040
https://min.io/docs/minio/linux/developers/python/API.html
4141
"""
4242
return Minio(
@@ -55,7 +55,7 @@ def get_config(self) -> MinioConfig:
5555
"""
5656
return {
5757
"endpoint": f"{self.get_container_host_ip()}" +
58-
f":{self.get_exposed_port(self.port_to_expose)}",
58+
f":{self.get_exposed_port(self.port_to_expose)}",
5959
"access_key": self.access_key,
6060
"secret_key": self.secret_key,
6161
}

0 commit comments

Comments
 (0)