Skip to content

Commit 633f978

Browse files
authored
Merge pull request #753 from Jumballaya/fix/spelling-mistake-in-error
Spelling mistake on PlotlyDataTypeError message
2 parents fa0bb20 + c5f9023 commit 633f978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)