We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da09168 commit e1b087aCopy full SHA for e1b087a
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
- Fixed type checking with `mypy` and `pyright`
6
- Dropped support for Python 3.8, 3.9 and 3.10
7
+- Export `Handler` in `pyee/__init__.py`
8
9
## 2024/11/16 Version 12.1.1
10
pyee/twisted.py
@@ -65,7 +65,7 @@ def _emit_run(
65
except Exception:
66
self.emit("failure", Failure())
67
else:
68
- if iscoroutine(result): # type: ignore
+ if iscoroutine(result):
69
d = ensureDeferred(result)
70
elif isinstance(result, Deferred):
71
d = result
0 commit comments