Skip to content

Commit c5f9023

Browse files
author
Patrick Burris
committed
Fix: spelling on PlotlyDataTypeError message
1 parent fa0bb20 commit c5f9023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: plotly/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def __init__(self, obj, path, notes=()):
122122
format_dict = {'index': path[-1], 'object_name': obj._name}
123123
message = ("Invalid entry found in '{object_name}' at index, '{index}'"
124124
.format(**format_dict))
125-
note = "It's invalid because it does't contain a valid 'type' value."
125+
note = "It's invalid because it doesn't contain a valid 'type' value."
126126
notes = [note] + list(notes)
127127
super(PlotlyDataTypeError, self).__init__(
128128
message=message, path=path, notes=notes

0 commit comments

Comments
 (0)