-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Widgets: Remove deprecations and make arguments keyword only #26853
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
Conversation
08d9e2c
to
989dda7
Compare
2e37748
to
e19633f
Compare
@oscargus do you mind holding off on any other deprecation removals? We would like to leave that as a good first issue for the sprint tomorrow. |
Sure, no problems! Didn't know that. |
No worries, we only decided yesterday. Also, this PR was very useful as an example of what to do. |
e19633f
to
705568a
Compare
if (i in inds["ind"] | ||
or t.get_window_extent().contains(event.x, event.y)): |
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.
Fits in a line now:
if (i in inds["ind"] | |
or t.get_window_extent().contains(event.x, event.y)): | |
if i in inds["ind"] or t.get_window_extent().contains(event.x, event.y): |
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 have a further PR that rewrites this loop, so let's just get this in for now.
PR summary
PR checklist