-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address mypy type checking errors #177
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some notes to self.
pyee/twisted.py
Outdated
@@ -67,7 +67,7 @@ def _emit_run( | |||
except Exception: | |||
self.emit("failure", Failure()) | |||
else: | |||
if iscoroutine and iscoroutine(result): | |||
if iscoroutine and iscoroutine(result): # type: ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mypy thinks iscoroutine
will always return True. I don't know why it thinks this.
But also, if I drop the conditional import, I shouldn't need to check for iscoroutine
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it was actually that iscoroutine
would always be truthy. Getting rid of the conditional import may fix this.
This reverts commit a556127.
I decided to use
Once this is merged, I'll make new PRs which add a true |
#176 shows that mypy's behavior deviates significantly from pyright, to the point that we should QA against it.
This PR also includes a bunch of typing fixes - mostly for the benefit of mypy, though a few fixes for pyright as well. In the latter case, pyright expects the
Self
type now. Note that this means I'd have to drop support for 3.8, 3.9 and 3.10 - unless, of course, I defineSelf = Any
.QA passes, but I need to decide whether or not I want to cut a major release.