Skip to content

Commit b2b8451

Browse files
committed
tests
1 parent 5482b53 commit b2b8451

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

plotly/plotly/plotly.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ def plot(figure_or_data, validate=True, **plot_options):
238238

239239
plot_options = _plot_option_logic(plot_options)
240240
res = _send_to_plotly(figure, **plot_options)
241+
241242
if res['error'] == '':
242243
if plot_options['auto_open']:
243244
_open_url(res['url'])
@@ -1299,7 +1300,7 @@ def response_handler(cls, response):
12991300
"Plotly On-Premise server to request against this endpoint or "
13001301
"this endpoint may not be available yet.\nQuestions? "
13011302
"Visit community.plot.ly, contact your plotly administrator "
1302-
"or upgrade to a Pro account for 1-1 help: https://goo.gl/1YUVu9 "
1303+
"or upgrade to a Pro account for 1-1 help: https://goo.gl/1YUVu9 "
13031304
.format(url=get_config()['plotly_api_domain'])
13041305
)
13051306
else:
@@ -1425,7 +1426,8 @@ def _send_to_plotly(figure, **plot_options):
14251426
key=api_key,
14261427
origin='plot',
14271428
kwargs=kwargs)
1428-
#print fig
1429+
1430+
print payload
14291431
#if 'frames' in fig:
14301432
# r = create_animations(fig, kwargs, payload)
14311433

0 commit comments

Comments
 (0)