Skip to content

Commit f787d23

Browse files
committed
Follow PEP8 convention in documentation
This amends the documentation for the multi-range slider to include spaces after commas, following PEP8.
1 parent 28877f9 commit f787d23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/examples/Widget List.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -639,11 +639,11 @@
639639
"outputs": [],
640640
"source": [
641641
"import datetime\n",
642-
"dates = [datetime.date(2015,i,1) for i in range(1,13)]\n",
642+
"dates = [datetime.date(2015, i, 1) for i in range(1, 13)]\n",
643643
"options = [(i.strftime('%b'), i) for i in dates]\n",
644644
"widgets.SelectionRangeSlider(\n",
645645
" options=options,\n",
646-
" index=(0,11),\n",
646+
" index=(0, 11),\n",
647647
" description='Months (2015)',\n",
648648
" disabled=False\n",
649649
")"

0 commit comments

Comments
 (0)