Skip to content

Commit faab8a4

Browse files
committed
rename variable to items
1 parent 176157c commit faab8a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/06.01-widget-layout-and-styling.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,13 +409,13 @@
409409
"source": [
410410
"from ipywidgets import Layout, Button, HBox\n",
411411
"\n",
412-
"items_0 = [\n",
412+
"items = [\n",
413413
" Button(description='weight=1; 0%', layout=Layout(flex='1 1 0%', width='auto'), button_style='danger'),\n",
414414
" Button(description='weight=3; 0%', layout=Layout(flex='3 1 0%', width='auto'), button_style='danger'),\n",
415415
" Button(description='weight=1; 0%', layout=Layout(flex='1 1 0%', width='auto'), button_style='danger'),\n",
416416
"]\n",
417417
"box_layout = Layout(align_items='stretch', width='70%')\n",
418-
"HBox(children=items_0, layout=box_layout)"
418+
"HBox(children=items, layout=box_layout)"
419419
]
420420
},
421421
{

0 commit comments

Comments
 (0)