Skip to content

Commit

Permalink
chore(python): Fix typo in error message (#10281)
Browse files Browse the repository at this point in the history
  • Loading branch information
duvenagep authored Aug 3, 2023
1 parent 2d5511b commit 0596d60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/src/apply/series.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ fn append_series(
// unpack the wrapper in a PySeries
let py_pyseries = out
.getattr("_s")
.expect("could net get series attribute '_s'");
.expect("could not get series attribute '_s'");
let pyseries = py_pyseries.extract::<PySeries>()?;
builder
.append_series(&pyseries.series)
Expand Down Expand Up @@ -1158,7 +1158,7 @@ fn call_series_lambda(pypolars: &PyModule, lambda: &PyAny, series: Series) -> Op
// unpack the wrapper in a PySeries
let py_pyseries = out
.getattr("_s")
.expect("could net get series attribute '_s'");
.expect("could not get series attribute '_s'");
let pyseries = py_pyseries.extract::<PySeries>().unwrap();
Some(pyseries.series)
}
Expand Down

0 comments on commit 0596d60

Please sign in to comment.