From 72f17c50546d7b1fe7c8ca8559c750352a4d468b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20K=C3=B6tter?= Date: Thu, 31 Oct 2024 07:36:30 +0100 Subject: [PATCH] v3x/glue - fix httpx_auth >= 0.21.0 --- aiopenapi3/v30/glue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiopenapi3/v30/glue.py b/aiopenapi3/v30/glue.py index 9e93a2be..e181740b 100644 --- a/aiopenapi3/v30/glue.py +++ b/aiopenapi3/v30/glue.py @@ -8,7 +8,7 @@ try: import httpx_auth - from httpx_auth.authentication import SupportMultiAuth + from httpx_auth import SupportMultiAuth import inspect except ImportError: httpx_auth = None