Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
evillique committed May 8, 2023
1 parent c841a18 commit ee4ce7d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/integration/test_ssl_cert_authentication/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,7 @@ def execute_query_https(
retries = 10
while True:
try:
url = (
f"https://{instance.ip_address}:{HTTPS_PORT}/?query={urllib.parse.quote(query)}"
)
url = f"https://{instance.ip_address}:{HTTPS_PORT}/?query={urllib.parse.quote(query)}"
request = urllib.request.Request(url)
request.add_header("X-ClickHouse-User", user)
if enable_ssl_auth:
Expand Down

0 comments on commit ee4ce7d

Please sign in to comment.