From e915115f5d5dad49efa507bed818d03b5ae6160c Mon Sep 17 00:00:00 2001 From: Charles Chan Date: Sun, 25 Mar 2018 17:20:24 -0700 Subject: [PATCH] Add missing import for AsyncHTTPClient Add missing import for AsyncHTTPClient for Future example --- docs/guide/async.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guide/async.rst b/docs/guide/async.rst index 60f8a23b34..fb350d9420 100644 --- a/docs/guide/async.rst +++ b/docs/guide/async.rst @@ -91,6 +91,7 @@ And again with a `.Future` instead of a callback: .. testcode:: from tornado.concurrent import Future + from tornado.httpclient import AsyncHTTPClient def async_fetch_future(url): http_client = AsyncHTTPClient()