Skip to content

Commit 53aaec6

Browse files
committed
chore: fmt
1 parent 1fad0ed commit 53aaec6

File tree

1 file changed

+1
-4
lines changed
  • packages/cubejs-backend-native/src/cross

1 file changed

+1
-4
lines changed

packages/cubejs-backend-native/src/cross/clrepr.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,7 @@ pub enum CLRepr {
119119
impl CLRepr {
120120
pub fn is_kwarg(&self) -> bool {
121121
match self {
122-
CLRepr::Object(obj) => match obj.1 {
123-
CLReprObjectKind::KWargs => true,
124-
_ => false,
125-
},
122+
CLRepr::Object(obj) => matches!(obj.1, CLReprObjectKind::KWargs),
126123
_ => false,
127124
}
128125
}

0 commit comments

Comments
 (0)