Skip to content

Commit

Permalink
Small notebook fix
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 25, 2019
1 parent 03bced7 commit bbce010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gallery/links/bokeh_property_editor.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
" elif p.endswith('text') or p.endswith('label'):\n",
" w = pn.widgets.TextInput(**ps)\n",
" elif p.endswith('dash'):\n",
" patterns = list(DashPattern)\n",
" w = pn.widgets.Select(name=p, options=list(LineDash), value=v or patterns[0])\n",
" patterns = list(LineDash)\n",
" w = pn.widgets.Select(name=p, options=patterns, value=v or patterns[0])\n",
" else:\n",
" continue\n",
" w.jslink(model, value=p)\n",
Expand Down

0 comments on commit bbce010

Please sign in to comment.