We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e7faf commit 32843afCopy full SHA for 32843af
plotly/plotly/plotly.py
@@ -1400,13 +1400,6 @@ def add_share_key_to_url(plot_url, attempt=0):
1400
1401
def _send_to_plotly(figure, **plot_options):
1402
fig = tools._replace_newline(figure) # does not mutate figure
1403
-
1404
- # replace '/' with ':' for errorless response
1405
- #if 'data' in fig:
1406
- # for item in fig['data']:
1407
- # for key in ['xsrc', 'ysrc']:
1408
- # item[key] = item[key].replace('/', ':')
1409
1410
data = json.dumps(fig['data'] if 'data' in fig else [],
1411
cls=utils.PlotlyJSONEncoder)
1412
credentials = get_credentials()
0 commit comments