Skip to content

Commit c52711d

Browse files
committed
Fixed issue on Python 3.8
1 parent 239ba57 commit c52711d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

httpcore/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def aclose(self) -> Awaitable[object]: ...
1515

1616
_SupportsAcloseT = TypeVar("_SupportsAcloseT", bound=_SupportsAclose)
1717

18-
class aclosing(AbstractAsyncContextManager[_SupportsAcloseT, None]):
18+
class aclosing(AbstractAsyncContextManager):
1919
def __init__(self, thing: _SupportsAcloseT) -> None:
2020
self.thing = thing
2121

0 commit comments

Comments
 (0)