Skip to content

Commit

Permalink
fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Nov 24, 2024
1 parent 8e6cd9b commit 2a3112c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/freeze/src/types/columns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,7 @@ pub trait ColumnData: Default + crate::Dataset {

/// input arg aliases
fn base_arg_aliases() -> HashMap<Dim, Dim> {
match Self::arg_aliases() {
Some(x) => x,
None => HashMap::new(),
}
Self::arg_aliases().unwrap_or_default()
}
}

Expand Down

0 comments on commit 2a3112c

Please sign in to comment.