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 00d406c commit 17893e9Copy full SHA for 17893e9
1 file changed
src/pdfrest/client.py
@@ -441,8 +441,6 @@ class _BaseApiClient(Generic[ClientType]):
441
"""Shared logic between sync and async client variants."""
442
443
_config: _ClientConfig
444
- _client: ClientType
445
- _owns_http_client: bool
446
447
def __init__(
448
self,
@@ -811,6 +809,7 @@ class _SyncApiClient(_BaseApiClient[httpx.Client]):
811
809
"""Internal synchronous client implementation."""
812
810
813
_client: httpx.Client
+ _owns_http_client: bool
814
815
816
@@ -1072,6 +1071,7 @@ class _AsyncApiClient(_BaseApiClient[httpx.AsyncClient]):
1072
1071
"""Internal asynchronous client implementation."""
1073
1074
_client: httpx.AsyncClient
1075
1076
1077
0 commit comments