Skip to content

Commit

Permalink
fix type of _SansIOHTTPPolicyRunner (#24932)
Browse files Browse the repository at this point in the history
* fix type of _SansIOHTTPPolicyRunner

* update changelog
  • Loading branch information
xiangyan99 authored Jun 23, 2022
1 parent 7058612 commit 423a0ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions sdk/core/azure-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

### Bugs Fixed

- Fixed the bug that azure-core could not be imported under Python 3.11.0b3 #24928

### Other Changes

## 1.24.1 (2022-06-01)
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure-core/azure/core/pipeline/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
PoliciesType = List[Union[HTTPPolicy, SansIOHTTPPolicy]]


class _SansIOHTTPPolicyRunner(HTTPPolicy, Generic[HTTPRequestType, HTTPResponseType]):
class _SansIOHTTPPolicyRunner(HTTPPolicy):
"""Sync implementation of the SansIO policy.
Modifies the request and sends to the next policy in the chain.
Expand Down

0 comments on commit 423a0ae

Please sign in to comment.