Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions plotly/matplotlylib/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,5 +735,4 @@ def resize(self):
pass

def strip_style(self):
self.msg += "Stripping mpl style, deleting keys from data and layout\n"
self.plotly_fig.strip_style()
self.msg += "Stripping mpl style is no longer supported\n"
1 change: 0 additions & 1 deletion plotly/plotly/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ def iplot_mpl(fig, resize=True, strip_style=False, update=None,
fig = tools.mpl_to_plotly(fig, resize=resize, strip_style=strip_style)
if update and isinstance(update, dict):
fig.update(update)
fig.validate()
elif update is not None:
raise exceptions.PlotlyGraphObjectError(
"'update' must be dictionary-like and a valid plotly Figure "
Expand Down