Skip to content

Commit

Permalink
fix(rust,python): fmt for split_inclusive
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Oct 26, 2023
1 parent f76f5b6 commit 13aefbd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/polars-plan/src/dsl/function_expr/strings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ impl Display for StringFunction {
#[cfg(feature = "dtype-struct")]
StringFunction::SplitExact { inclusive, .. } => {
if *inclusive {
"split_exact"
} else {
"split_exact_inclusive"
} else {
"split_exact"
}
},
#[cfg(feature = "dtype-struct")]
Expand All @@ -201,9 +201,9 @@ impl Display for StringFunction {
StringFunction::Strptime(_, _) => "strptime",
StringFunction::Split(inclusive) => {
if *inclusive {
"split"
} else {
"split_inclusive"
} else {
"split"
}
},
#[cfg(feature = "nightly")]
Expand Down

0 comments on commit 13aefbd

Please sign in to comment.