Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonney committed Dec 12, 2024
1 parent 4cfba7c commit 5812c87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/solana/rpc/async_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ def __init__(
) -> None:
"""Init API client."""
super().__init__(commitment)
self._provider = async_http.AsyncHTTPProvider(endpoint, timeout=timeout, extra_headers=extra_headers, proxy=proxy)
self._provider = async_http.AsyncHTTPProvider(
endpoint, timeout=timeout, extra_headers=extra_headers, proxy=proxy
)

async def __aenter__(self) -> "AsyncClient":
"""Use as a context manager."""
Expand Down

0 comments on commit 5812c87

Please sign in to comment.