From ea45a4f36870d3d97457524eecdfcc685097a3d7 Mon Sep 17 00:00:00 2001 From: michaelbabyn Date: Fri, 20 Jul 2018 19:42:30 -0400 Subject: [PATCH 1/2] fixed a missing comma in updated configkeys --- plotly/offline/offline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/offline/offline.py b/plotly/offline/offline.py index 145e0a9fcec..f4b4c274f48 100644 --- a/plotly/offline/offline.py +++ b/plotly/offline/offline.py @@ -207,7 +207,7 @@ def _plot_html(figure_or_data, config, validate, default_width, 'topojsonURL' 'mapboxAccessToken', 'logging', - 'globalTransforms' + 'globalTransforms', 'locale', 'locales', ) From 7fe6aa6b3c665bacfd4a2cc1572f2aeea1b96c5a Mon Sep 17 00:00:00 2001 From: michaelbabyn <41019918+michaelbabyn@users.noreply.github.com> Date: Fri, 20 Jul 2018 20:58:42 -0400 Subject: [PATCH 2/2] Update offline.py --- plotly/offline/offline.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plotly/offline/offline.py b/plotly/offline/offline.py index f4b4c274f48..44e75b53ce7 100644 --- a/plotly/offline/offline.py +++ b/plotly/offline/offline.py @@ -179,12 +179,12 @@ def _plot_html(figure_or_data, config, validate, default_width, cls=utils.PlotlyJSONEncoder) configkeys = ( - 'staticPlot' + 'staticPlot', 'plotlyServerURL', 'editable', 'edits', 'autosizable', - 'queueLength' + 'queueLength', 'fillFrame', 'frameMargins', 'scrollZoom', @@ -204,7 +204,7 @@ def _plot_html(figure_or_data, config, validate, default_width, 'displaylogo', 'plotGlPixelRatio', 'setBackground', - 'topojsonURL' + 'topojsonURL', 'mapboxAccessToken', 'logging', 'globalTransforms',