Skip to content

Commit e325589

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 33b622b commit e325589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/methods/describe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def describe(self, percentiles: Sequence[float] | np.ndarray) -> DataFrame:
174174
col_names = reorder_columns(ldesc)
175175
if len(ldesc) == 0:
176176
msg = "None of the included dtypes are present in the DataFrame"
177-
raise ValueError(msg)
177+
raise ValueError(msg)
178178
d = concat(
179179
[x.reindex(col_names) for x in ldesc],
180180
axis=1,

0 commit comments

Comments
 (0)