Skip to content

Commit

Permalink
remove pyo3 signatures that provided defaults for first_value and las…
Browse files Browse the repository at this point in the history
…t_value
  • Loading branch information
Michael-J-Ward committed Jul 29, 2024
1 parent 65ea065 commit 2009741
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ pub fn regr_syy(expr_y: PyExpr, expr_x: PyExpr, distinct: bool) -> PyResult<PyEx
}

#[pyfunction]
#[pyo3(signature = (expr, distinct = false, filter = None, order_by = None, null_treatment = None))]
pub fn first_value(
expr: PyExpr,
distinct: bool,
Expand Down Expand Up @@ -345,7 +344,6 @@ pub fn first_value(
}

#[pyfunction]
#[pyo3(signature = (expr, distinct = false, filter = None, order_by = None, null_treatment = None))]
pub fn last_value(
expr: PyExpr,
distinct: bool,
Expand Down

0 comments on commit 2009741

Please sign in to comment.