Skip to content

Commit a5e8f9b

Browse files
committed
Fix typo in error message formatting in process_args_into_dataframe
1 parent 241746e commit a5e8f9b

File tree

1 file changed

+2
-2
lines changed
  • packages/python/plotly/plotly/express

1 file changed

+2
-2
lines changed

Diff for: packages/python/plotly/plotly/express/_core.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ def process_args_into_dataframe(args, wide_mode, var_name, value_name):
12151215
raise ValueError(
12161216
"All arguments should have the same length. "
12171217
"The length of column argument `df[%s]` is %d, whereas the "
1218-
"length of previously-processed arguments %s is %d"
1218+
"length of previously-processed arguments %s is %d"
12191219
% (
12201220
field,
12211221
len(df_input[argument]),
@@ -1253,7 +1253,7 @@ def process_args_into_dataframe(args, wide_mode, var_name, value_name):
12531253
raise ValueError(
12541254
"All arguments should have the same length. "
12551255
"The length of argument `%s` is %d, whereas the "
1256-
"length of previously-processed arguments %s is %d"
1256+
"length of previously-processed arguments %s is %d"
12571257
% (field, len(argument), str(list(df_output.keys())), length)
12581258
)
12591259
df_output[str(col_name)] = to_unindexed_series(argument, str(col_name))

0 commit comments

Comments
 (0)