diff --git a/CHANGES.md b/CHANGES.md index d81b8f3..2a7d430 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -55,6 +55,7 @@ * Update soupsieve_py2 1.9.5 (6a38398) to 1.9.5 final (e00a882) * Update Tornado_py3 Web Server 6.0.3 (ff985fe) to 6.1.dev1 (18b653c) * Update urllib3 release 1.25.6 (4a6c288) to 1.25.7 (37ba61a) +* Fix import in Tornado py2 ### 0.21.30 (2020-04-30 10:20:00 UTC) diff --git a/lib/tornado_py2/concurrent.py b/lib/tornado_py2/concurrent.py index f7efacc..02abbff 100644 --- a/lib/tornado_py2/concurrent.py +++ b/lib/tornado_py2/concurrent.py @@ -371,7 +371,7 @@ if asyncio is not None: Future = asyncio.Future # noqa if futures is None: - FUTURES = Future # type: typing.Union[type, typing.Tuple[type, ...]] + FUTURES = (Future, ) # type: typing.Union[type, typing.Tuple[type, ...]] else: FUTURES = (futures.Future, Future)