Skip to content

Update Slider docs and type check slidermin and slidermax. #8134

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 10 commits into from
Feb 25, 2017
Merged
Prev Previous commit
Fix: indent error
  • Loading branch information
heathhenley committed Feb 25, 2017
commit 2b4228548c9d45f77dede92db7c20f7e8f6b9a5b
2 changes: 1 addition & 1 deletion lib/matplotlib/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def _value_in_bounds(self, val):
if not self.closedmax:
return
val = self.slidermax.val
return val
return val

def _update(self, event):
"""update the slider position"""
Expand Down