Skip to content

Fix range(len()) usages #15431

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

Merged
merged 1 commit into from
Oct 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/matplotlib/backends/backend_wx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1230,20 +1230,20 @@ def _handleSelectAllAxes(self, evt):
"""Called when the 'select all axes' menu item is selected."""
if len(self._axisId) == 0:
return
for i in range(len(self._axisId)):
self._menu.Check(self._axisId[i], True)
for ax_id in self._axisId:
self._menu.Check(ax_id, True)
self._toolbar.set_active(self.getActiveAxes())
evt.Skip()

def _handleInvertAxesSelected(self, evt):
"""Called when the invert all menu item is selected"""
if len(self._axisId) == 0:
return
for i in range(len(self._axisId)):
if self._menu.IsChecked(self._axisId[i]):
self._menu.Check(self._axisId[i], False)
for ax_id in self._axisId:
if self._menu.IsChecked(ax_id):
self._menu.Check(ax_id, False)
else:
self._menu.Check(self._axisId[i], True)
self._menu.Check(ax_id, True)
self._toolbar.set_active(self.getActiveAxes())
evt.Skip()

Expand Down