Skip to content

Commit 33b622b

Browse files
authored
Update describe.py
1 parent 43ef1fa commit 33b622b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/methods/describe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ def describe(self, percentiles: Sequence[float] | np.ndarray) -> DataFrame:
173173

174174
col_names = reorder_columns(ldesc)
175175
if len(ldesc) == 0:
176-
msg = "None of the included dtypes are present in the DataFrame"
177-
raise ValueError(msg)
176+
msg = "None of the included dtypes are present in the DataFrame"
177+
raise ValueError(msg)
178178
d = concat(
179179
[x.reindex(col_names) for x in ldesc],
180180
axis=1,

0 commit comments

Comments
 (0)