Skip to content

Commit d6830cf

Browse files
Flake8 fixes
1 parent cdb4b6d commit d6830cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

testcontainers/opensearch.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ def get_client(self, verify_certs: bool = False, **kwargs) -> OpenSearch:
7878
"""
7979
config = self.get_config()
8080
return OpenSearch(
81-
hosts = [
81+
hosts=[
8282
{
8383
"host": config["host"],
8484
"port": config["port"],
8585
}
8686
],
87-
http_auth = (config["user"], config["password"]),
88-
use_ssl = self.security_enabled,
89-
verify_certs = verify_certs,
87+
http_auth=(config["user"], config["password"]),
88+
use_ssl=self.security_enabled,
89+
verify_certs=verify_certs,
9090
**kwargs,
9191
)
9292

0 commit comments

Comments
 (0)