Skip to content

Commit

Permalink
Fixed linting errors (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtvu authored Dec 18, 2023
1 parent 442e461 commit 8c63bf9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions native/explorer/src/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,6 @@ pub fn expr_ewm_standard_deviation(
bias,
min_periods,
ignore_nulls,
..Default::default()
};
ExExpr::new(expr.ewm_std(opts))
}
Expand All @@ -736,7 +735,6 @@ pub fn expr_ewm_variance(
bias,
min_periods,
ignore_nulls,
..Default::default()
};
ExExpr::new(expr.ewm_var(opts))
}
Expand Down
2 changes: 0 additions & 2 deletions native/explorer/src/series.rs
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,6 @@ pub fn s_ewm_standard_deviation(
bias,
min_periods,
ignore_nulls,
..Default::default()
};
let s1 = polars_ops::prelude::ewm_std(&series, opts)?;
Ok(ExSeries::new(s1))
Expand All @@ -908,7 +907,6 @@ pub fn s_ewm_variance(
bias,
min_periods,
ignore_nulls,
..Default::default()
};
let s1 = polars_ops::prelude::ewm_var(&series, opts)?;
Ok(ExSeries::new(s1))
Expand Down

0 comments on commit 8c63bf9

Please sign in to comment.