From 71386b8a27900efada89750f217f97dffbcf2f34 Mon Sep 17 00:00:00 2001 From: meejah Date: Fri, 24 Apr 2020 17:41:14 -0600 Subject: [PATCH] trollius is gone --- autobahn/asyncio/util.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/autobahn/asyncio/util.py b/autobahn/asyncio/util.py index 73b05a8ed..1b3e1cc16 100644 --- a/autobahn/asyncio/util.py +++ b/autobahn/asyncio/util.py @@ -26,13 +26,8 @@ import hashlib from typing import Optional +from asyncio import sleep # noqa -try: - from asyncio import sleep # noqa -except ImportError: - # Trollius >= 0.3 was renamed to asyncio - # noinspection PyUnresolvedReferences - from trollius import sleep # noqa __all = ( 'sleep',