We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8f1ae5 commit b49b4dcCopy full SHA for b49b4dc
1 file changed
httpx_auth/_authentication.py
@@ -31,7 +31,8 @@ async def async_auth_flow(
31
for authentication_mode in self.authentication_modes:
32
# auth_flow may yield one or more requests, the last of which is the user request with added auth headers
33
flow = authentication_mode.async_auth_flow(request)
34
- req = await anext(flow)
+
35
+ req = await flow.__anext__()
36
while True:
37
if req is request:
38
break
0 commit comments