Skip to content

Commit 2383969

Browse files
michaelbabynjonmmease
authored andcommitted
fixed a missing comma in updated configkeys (#1065)
Fixed missing commas in updated configkeys
1 parent 7009840 commit 2383969

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plotly/offline/offline.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,12 @@ def _plot_html(figure_or_data, config, validate, default_width,
179179
cls=utils.PlotlyJSONEncoder)
180180

181181
configkeys = (
182-
'staticPlot'
182+
'staticPlot',
183183
'plotlyServerURL',
184184
'editable',
185185
'edits',
186186
'autosizable',
187-
'queueLength'
187+
'queueLength',
188188
'fillFrame',
189189
'frameMargins',
190190
'scrollZoom',
@@ -204,10 +204,10 @@ def _plot_html(figure_or_data, config, validate, default_width,
204204
'displaylogo',
205205
'plotGlPixelRatio',
206206
'setBackground',
207-
'topojsonURL'
207+
'topojsonURL',
208208
'mapboxAccessToken',
209209
'logging',
210-
'globalTransforms'
210+
'globalTransforms',
211211
'locale',
212212
'locales',
213213
)

0 commit comments

Comments
 (0)