From: Ryu juheon Date: Sun, 20 Mar 2022 03:18:07 +0000 (+0900) Subject: style(asyncquery): change the ``httpx.AsyncClient`` type annotation to a string literal X-Git-Tag: v2.3.0rc1~86^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F795%2Fhead;p=thirdparty%2Fdnspython.git style(asyncquery): change the ``httpx.AsyncClient`` type annotation to a string literal --- diff --git a/dns/asyncquery.py b/dns/asyncquery.py index 885b8bf5..f22cba68 100644 --- a/dns/asyncquery.py +++ b/dns/asyncquery.py @@ -485,7 +485,7 @@ async def https( source_port: int = 0, one_rr_per_rrset: bool = False, ignore_trailing: bool = False, - client: Optional[httpx.AsyncClient] = None, + client: Optional["httpx.AsyncClient"] = None, path: str = "/dns-query", post: bool = True, verify: bool = True,