8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Additional Notes
1 parent db20def commit 1401c12Copy full SHA for 1401c12
plotly/exceptions.py
@@ -91,10 +91,8 @@ def __str__(self):
91
'path': '[' + ']['.join(repr(k) for k in self.path) + ']',
92
'notes': '\n'.join(self.notes)
93
}
94
- message = '{message}\n\nPath To Error: {path}'.format(**format_dict)
95
- if format_dict['notes']:
96
- message += '\n\nAdditional Notes:\n\n{notes}'.format(**format_dict)
97
- return message
+ return ('{message}\n\nPath To Error: {path}\n\n{notes}'
+ .format(**format_dict))
98
99
100
class PlotlyDictKeyError(PlotlyGraphObjectError):
0 commit comments