-
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
Overload EventEmitter.on type to avoid mypy errors #176
Conversation
How new is the overload feature? I'm unfamiliar and assume it's a recent addition. I'd be more than willing to tighten up the typing, if it's been available long enough. |
That said, I don't immediately see how overloading addresses that error. Can you connect the dots for me? |
In the meantime, you may consider: # ee.py
from pyee.base import EventEmitter
ee = EventEmitter()
@ee.listens_to('event')
def event_handler():
print('BANG BANG') |
Final comment, I unblocked the CI pipeline, and it's failing on a lint error. I'm guessing flake8 has a new rule to handle overloads - perhaps upgrading it will get that pipeline working? |
Thank you for the comments.
It's available the Python versions supported by this package,
I think, def on(
self, event: str, f: Optional[Handler] = None
) -> Union[Handler, Callable[[Handler], Handler]]: so the proposed overload definition as below may fix it because def on(self, event: str) -> Callable[[Handler], Handler]: ... This
It worked as expected. Thank you!
Will see it. |
Strange, I could have sworn I hit a wall when trying to figure out overloading when I implemented typing. But if this is true, I'm glad to pull it in.
This sounds like a bug in mypy - classic. Not that I'm against fixing it, but... man. As an aside, it looks like type checking has bigger problems. I don't know when I'll have a chance to push this PR through, though. |
#177 rolls in this change, and also fixes a bunch of other issues with type checking in The biggest issue with #177 is that it adds the I have some vacation time coming up next week, so I should be able to make a decision and cut a release there. I'm going to close this with the understanding that #177 supercedes it. Thanks for flagging! |
@whitphx Released in v13.0.0. Cheers! 🥂 |
Thank you so much! |
Hi,
when you use
mypy
as a type checker, it emits the following error like this.So it would be helpful if type overloads like this PR is introduced.
Thanks!