Skip to content

Commit 7681352

Browse files
committed
Modified gantt datasource validation error message
1 parent 1a1d762 commit 7681352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1693,7 +1693,7 @@ def _validate_gantt(df):
16931693
if key not in df:
16941694
raise exceptions.PlotlyError(
16951695
"The columns in your dataframe must include the "
1696-
"keys".format(REQUIRED_GANTT_KEYS)
1696+
"following keys: {0}".format(', '.join(REQUIRED_GANTT_KEYS))
16971697
)
16981698

16991699
num_of_rows = len(df.index)

0 commit comments

Comments
 (0)