If you run: ``` fig = go.FigureWidget() fig.show() ``` you get a _non-interactive_ figure. If you run: ``` fig = go.FigureWidget() fig ``` you get an interactive figure widget. This confused me and could lead to people having issues using `FigureWidget`.