blob: 6dbd91d91d3e7caa660f4a27657cf2a67a6649d1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
from __future__ import annotations
from httpx import AsyncClient # noqa: F401
from httpx import Client as BaseClient
class SyncClient(BaseClient):
def aclose(self) -> None:
self.close()
|