File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 22
22
meta_ops ,
23
23
file_ops ,
24
24
get_config ,
25
- create_animations
25
+ bad_create_animations
26
26
)
Original file line number Diff line number Diff line change @@ -1423,15 +1423,15 @@ def _send_to_plotly(figure, **plot_options):
1423
1423
origin = 'plot' ,
1424
1424
kwargs = kwargs )
1425
1425
1426
- if 'frames' in fig :
1427
- r = create_animations (fig , kwargs , payload )
1428
- else :
1429
- url = get_config ()['plotly_domain' ] + "/clientresp"
1426
+ # if 'frames' in fig:
1427
+ # r = create_animations(fig, kwargs, payload)
1428
+ # else:
1429
+ url = get_config ()['plotly_domain' ] + "/clientresp"
1430
1430
1431
- r = requests .post (url , data = payload ,
1432
- verify = get_config ()['plotly_ssl_verification' ])
1433
- r .raise_for_status ()
1434
- r = json .loads (r .text )
1431
+ r = requests .post (url , data = payload ,
1432
+ verify = get_config ()['plotly_ssl_verification' ])
1433
+ r .raise_for_status ()
1434
+ r = json .loads (r .text )
1435
1435
1436
1436
if 'error' in r and r ['error' ] != '' :
1437
1437
raise exceptions .PlotlyError (r ['error' ])
@@ -1453,7 +1453,7 @@ def _send_to_plotly(figure, **plot_options):
1453
1453
return r
1454
1454
1455
1455
1456
- def create_animations (fig , kwargs , payload ):
1456
+ def bad_create_animations (fig , kwargs , payload ):
1457
1457
"""
1458
1458
Makes a post to GRIDS and PLOTS if frames is in the figure.
1459
1459
You can’t perform that action at this time.
0 commit comments