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.
1 parent 9e8f4eb commit cc0f504Copy full SHA for cc0f504
pandas/io/parquet.py
@@ -59,7 +59,10 @@ def validate_dataframe(df: DataFrame):
59
x.inferred_type in {"string", "empty"} for x in df.columns.levels
60
):
61
raise ValueError(
62
- "parquet must have string column names for all values in each level of the MultiIndex"
+ """
63
+ parquet must have string column names for all values in
64
+ each level of the MultiIndex
65
66
)
67
else:
68
if df.columns.inferred_type not in {"string", "empty"}:
0 commit comments