(filename=None)
| 77 | |
| 78 | |
| 79 | def _bokeh_reset(filename=None): |
| 80 | curstate().reset() |
| 81 | if filename: |
| 82 | if not filename.endswith('.html'): |
| 83 | filename += '.html' |
| 84 | output_file(filename, title=filename) |
| 85 | elif IS_JUPYTER_NOTEBOOK: |
| 86 | curstate().output_notebook() |
| 87 | _add_popcon() |
| 88 | |
| 89 | |
| 90 | def _add_popcon(): |
no test coverage detected