10000 fix break · complyue/plotly.py@9b10a85 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b10a85

Browse files
committed
fix break
1 parent d906dc7 commit 9b10a85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/plotly/plotly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ def add_share_key_to_url(plot_url, attempt=0):
13531353
if access_res.status_code == 404:
13541354
attempt += 1
13551355
if attempt == 5:
1356-
break
1356+
return plot_url
13571357
plot_url = add_share_key_to_url(plot_url.split('?')[0], attempt)
13581358

13591359
return plot_url

0 commit comments

Comments
 (0)
0