Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbudy committed Jun 25, 2024
1 parent 6de02a7 commit 560bddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions async_firebase/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(
*,
request_timeout: RequestTimeout = DEFAULT_REQUEST_TIMEOUT,
request_limits: RequestLimits = DEFAULT_REQUEST_LIMITS,
use_http2: bool = False
use_http2: bool = False,
) -> None:
"""
:param credentials: instance of ``google.oauth2.service_account.Credentials``.
Expand Down Expand Up @@ -83,7 +83,7 @@ def _client(self) -> httpx.AsyncClient:
self._http_client = httpx.AsyncClient(
timeout=httpx.Timeout(**self._request_timeout.__dict__),
limits=httpx.Limits(**self._request_limits.__dict__),
http2=self._use_http2
http2=self._use_http2,
)
return self._http_client

Expand Down

0 comments on commit 560bddd

Please sign in to comment.