Skip to content

Commit

Permalink
fix: Fix cum_max using exception text of cum_min for invalid dtype (
Browse files Browse the repository at this point in the history
  • Loading branch information
t-ded authored Sep 17, 2024
1 parent 6561eba commit a7c48a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-ops/src/series/ops/cum_agg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ pub fn cum_max(s: &Series, reverse: bool) -> PolarsResult<Series> {
}
})
},
dt => polars_bail!(opq = cum_min, dt),
dt => polars_bail!(opq = cum_max, dt),
}
}

Expand Down

0 comments on commit a7c48a9

Please sign in to comment.