Skip to content

Commit 7dc13b4

Browse files
committed
Remove conditional iscoroutine import
1 parent 6952e9a commit 7dc13b4

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

pyee/twisted.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
# -*- coding: utf-8 -*-
22

3+
from asyncio import iscoroutine
34
from typing import Any, Callable, cast, Dict, Optional, Tuple
45

56
from twisted.internet.defer import Deferred, ensureDeferred
67
from twisted.python.failure import Failure
78

89
from pyee.base import EventEmitter, PyeeError
910

10-
try:
11-
from asyncio import iscoroutine # type: ignore
12-
except ImportError:
13-
iscoroutine = None # type: ignore
14-
15-
1611
Self = Any
1712

1813

@@ -70,7 +65,7 @@ def _emit_run(
7065
except Exception:
7166
self.emit("failure", Failure())
7267
else:
73-
if iscoroutine and iscoroutine(result): # type: ignore
68+
if iscoroutine(result): # type: ignore
7469
d = ensureDeferred(result)
7570
elif isinstance(result, Deferred):
7671
d = result

0 commit comments

Comments
 (0)