We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7058612 commit 423a0aeCopy full SHA for 423a0ae
sdk/core/azure-core/CHANGELOG.md
@@ -8,6 +8,8 @@
8
9
### Bugs Fixed
10
11
+- Fixed the bug that azure-core could not be imported under Python 3.11.0b3 #24928
12
+
13
### Other Changes
14
15
## 1.24.1 (2022-06-01)
sdk/core/azure-core/azure/core/pipeline/_base.py
@@ -43,7 +43,7 @@
43
PoliciesType = List[Union[HTTPPolicy, SansIOHTTPPolicy]]
44
45
46
-class _SansIOHTTPPolicyRunner(HTTPPolicy, Generic[HTTPRequestType, HTTPResponseType]):
+class _SansIOHTTPPolicyRunner(HTTPPolicy):
47
"""Sync implementation of the SansIO policy.
48
49
Modifies the request and sends to the next policy in the chain.
0 commit comments