We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29de8e1 commit 77b673fCopy full SHA for 77b673f
1 file changed
src/pdfrest/client.py
@@ -462,8 +462,6 @@ class _BaseApiClient(Generic[ClientType]):
462
"""Shared logic between sync and async client variants."""
463
464
_config: _ClientConfig
465
- _client: ClientType
466
- _owns_http_client: bool
467
468
def __init__(
469
self,
@@ -904,6 +902,7 @@ class _SyncApiClient(_BaseApiClient[httpx.Client]):
904
902
"""Internal synchronous client implementation."""
905
903
906
_client: httpx.Client
+ _owns_http_client: bool
907
908
909
@@ -1161,6 +1160,7 @@ class _AsyncApiClient(_BaseApiClient[httpx.AsyncClient]):
1161
1160
"""Internal asynchronous client implementation."""
1162
1163
_client: httpx.AsyncClient
1164
1165
1166
0 commit comments