Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Feb 26, 2025
1 parent 1fad0ed commit 53aaec6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/cubejs-backend-native/src/cross/clrepr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,7 @@ pub enum CLRepr {
impl CLRepr {
pub fn is_kwarg(&self) -> bool {
match self {
CLRepr::Object(obj) => match obj.1 {
CLReprObjectKind::KWargs => true,
_ => false,
},
CLRepr::Object(obj) => matches!(obj.1, CLReprObjectKind::KWargs),
_ => false,
}
}
Expand Down

0 comments on commit 53aaec6

Please sign in to comment.