From 3d6d43d9e43232335dac03e07341cc7484165127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mart=C3=ADnez=20Moreno?= Date: Mon, 27 May 2019 16:59:41 -0700 Subject: [PATCH] Fix missing comma so example compiles. --- 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 6cb8cefde1b..2c676179dff 100644 --- a/plotly/offline/offline.py +++ b/plotly/offline/offline.py @@ -390,7 +390,7 @@ def plot(figure_or_data, show_link=False, link_text='Export to plot.ly', plot([go.Scatter(x=[1, 2, 3], y=[3, 2, 6])], filename='my-graph.html') # We can also download an image of the plot by setting the image parameter # to the image format we want - plot([go.Scatter(x=[1, 2, 3], y=[3, 2, 6])], filename='my-graph.html' + plot([go.Scatter(x=[1, 2, 3], y=[3, 2, 6])], filename='my-graph.html', image='jpeg') ``` More examples below.