From 9038e0d6a45b05b273acbd00da1e03ff28366db5 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Thu, 15 Jan 2015 18:21:33 -0800 Subject: [PATCH] Add docstring for IntRangeSlider Closes gh-5381 This was the last remaining widget class I could see without a docstring --- IPython/html/widgets/widget_int.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/html/widgets/widget_int.py b/IPython/html/widgets/widget_int.py index ff6efdcce..73ca5cf94 100644 --- a/IPython/html/widgets/widget_int.py +++ b/IPython/html/widgets/widget_int.py @@ -186,6 +186,7 @@ class _BoundedIntRange(_IntRange): @register('IPython.IntRangeSlider') class IntRangeSlider(_BoundedIntRange): + """Slider widget that represents a pair of ints between a minimum and maximum value.""" _view_name = Unicode('IntSliderView', sync=True) orientation = CaselessStrEnum(values=['horizontal', 'vertical'], default_value='horizontal', allow_none=False,