Skip to content

Commit

Permalink
Remove redundant parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
dekkers committed Nov 1, 2024
1 parent f3ad95e commit 8abcb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octopoes/octopoes/xtdb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _get_xtdb_http_session(base_url: str) -> httpx.Client:
return httpx.Client(
base_url=base_url,
headers={"Accept": "application/json"},
transport=(httpx.HTTPTransport(retries=3)),
transport=httpx.HTTPTransport(retries=3),
timeout=settings.outgoing_request_timeout,
)

Expand Down

0 comments on commit 8abcb03

Please sign in to comment.