Import ASGIDispatch from top-level httpx (#1806)

As importing from submodules of httpx is deprecated and removed in 0.12.0
This commit is contained in:
wangqr 2020-04-10 15:03:51 -04:00 committed by GitHub
parent d969fdc19f
commit ae40f960ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,7 +185,7 @@ async def app_call_with_return(self, scope, receive, send):
return await asgi_app()
class SanicASGIDispatch(httpx.dispatch.asgi.ASGIDispatch):
class SanicASGIDispatch(httpx.ASGIDispatch):
pass