Skip to content

Commit e1b087a

Browse files
committedMar 17, 2025
Remove unneeded type ignore
1 parent da09168 commit e1b087a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Fixed type checking with `mypy` and `pyright`
66
- Dropped support for Python 3.8, 3.9 and 3.10
7+
- Export `Handler` in `pyee/__init__.py`
78

89
## 2024/11/16 Version 12.1.1
910

‎pyee/twisted.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _emit_run(
6565
except Exception:
6666
self.emit("failure", Failure())
6767
else:
68-
if iscoroutine(result): # type: ignore
68+
if iscoroutine(result):
6969
d = ensureDeferred(result)
7070
elif isinstance(result, Deferred):
7171
d = result

0 commit comments

Comments
 (0)
Failed to load comments.