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.
2 parents 14883ac + dc11111 commit 0cf8783Copy full SHA for 0cf8783
packages/python/plotly/plotly/offline/offline.py
@@ -166,7 +166,8 @@ def _get_jconfig(config=None):
166
167
plotly_platform_url = plotly.tools.get_config_plotly_server_url()
168
169
- clean_config["plotlyServerURL"] = plotly_platform_url
+ if not clean_config.get("plotlyServerURL", None):
170
+ clean_config["plotlyServerURL"] = plotly_platform_url
171
172
if (
173
plotly_platform_url != "https://plot.ly"
0 commit comments