From f83c48e2d38f077b1263529a8e1d12270088129d Mon Sep 17 00:00:00 2001 From: meejah Date: Fri, 24 Apr 2020 19:54:46 -0600 Subject: [PATCH] trollius is gone (#1373) --- 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',