Skip to content

Commit 794be8c

Browse files
jimmycallinjbrockmendel
authored andcommitted
Added missing space to error description (#27866)
1 parent aef0804 commit 794be8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/feather_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def to_feather(df, path):
3939
if not isinstance(df.index, Int64Index):
4040
raise ValueError(
4141
"feather does not support serializing {} "
42-
"for the index; you can .reset_index()"
42+
"for the index; you can .reset_index() "
4343
"to make the index into column(s)".format(type(df.index))
4444
)
4545

0 commit comments

Comments
 (0)