Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0cf8783

Browse files
committed
Merge branch 'master' into v4_integration
2 parents 14883ac + dc11111 commit 0cf8783

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/python/plotly/plotly/offline/offline.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ def _get_jconfig(config=None):
166166

167167
plotly_platform_url = plotly.tools.get_config_plotly_server_url()
168168

169-
clean_config["plotlyServerURL"] = plotly_platform_url
169+
if not clean_config.get("plotlyServerURL", None):
170+
clean_config["plotlyServerURL"] = plotly_platform_url
170171

171172
if (
172173
plotly_platform_url != "https://plot.ly"

0 commit comments

Comments
 (0)