Skip to content

Commit 7e1e605

Browse files
committed
'...' -> '..' for to_string() overflow.
Higher chance that we see the end returned.
1 parent 168077b commit 7e1e605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: plotly/graph_objs/graph_objs_tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def update_keys(keys):
1818

1919
def curtail_val_repr(val, max_chars, add_delim=False):
2020
delim = ", "
21-
end = "..."
21+
end = ".."
2222
if isinstance(val, six.string_types):
2323
if max_chars <= len("'" + end + "'"):
2424
return ' ' * max_chars

0 commit comments

Comments
 (0)