I have
out = widgets.Output()
@out.capture()
def render():
IPython.display.IFrame(src='file.html',width=900, height=600)
The last line works fine by itself without the Output
widget, but when i do out
in a separate cell in the Jupyter notebook, nothing is shown?