From e8331102f1ca3fdd174699854571028e151c902e Mon Sep 17 00:00:00 2001 From: Ryu juheon Date: Sun, 20 Mar 2022 12:18:07 +0900 Subject: [PATCH] style(asyncquery): change the ``httpx.AsyncClient`` type annotation to a string literal --- dns/asyncquery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.47.3