Skip to content

Commit f4925ea

Browse files
Jo-Con-Eljonmmease
authored andcommitted
Fix missing comma in docstring example (plotly#1583)
1 parent 106269e commit f4925ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: plotly/offline/offline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def plot(figure_or_data, show_link=False, link_text='Export to plot.ly',
390390
plot([go.Scatter(x=[1, 2, 3], y=[3, 2, 6])], filename='my-graph.html')
391391
# We can also download an image of the plot by setting the image parameter
392392
# to the image format we want
393-
plot([go.Scatter(x=[1, 2, 3], y=[3, 2, 6])], filename='my-graph.html'
393+
plot([go.Scatter(x=[1, 2, 3], y=[3, 2, 6])], filename='my-graph.html',
394394
image='jpeg')
395395
```
396396
More examples below.

0 commit comments

Comments
 (0)