Skip to content

Commit

Permalink
Fix typo in async path
Browse files Browse the repository at this point in the history
  • Loading branch information
AstraLuma committed May 21, 2024
1 parent 5dcc714 commit 07bde99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/httpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async def handle_async_request(self, request: httpx.Request) -> httpx.Response:
# Some kind of look up error. Gonna assume safe and let farther
# down the stack handle it.
pass
return await self.wrappee.handle_await_request(request)
return await self.wrappee.handle_async_request(request)


def _wrap_transport(
Expand Down

0 comments on commit 07bde99

Please sign in to comment.