Skip to content

Commit

Permalink
fixed a missing comma in updated configkeys (plotly#1065)
Browse files Browse the repository at this point in the history
Fixed missing commas in updated configkeys
  • Loading branch information
michaelbabyn authored and jonmmease committed Jul 21, 2018
1 parent 7009840 commit 2383969
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plotly/offline/offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -204,10 +204,10 @@ def _plot_html(figure_or_data, config, validate, default_width,
'displaylogo',
'plotGlPixelRatio',
'setBackground',
'topojsonURL'
'topojsonURL',
'mapboxAccessToken',
'logging',
'globalTransforms'
'globalTransforms',
'locale',
'locales',
)
Expand Down

0 comments on commit 2383969

Please sign in to comment.