Skip to content

Commit

Permalink
clippiness
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Crossley <[email protected]>
  • Loading branch information
jcrossley3 committed Nov 8, 2024
1 parent a4d9aec commit 029e27b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/db/query/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ impl Filter {
impl TryFrom<(&str, Operator, &Vec<String>, &Columns)> for Filter {
type Error = Error;
fn try_from(tuple: (&str, Operator, &Vec<String>, &Columns)) -> Result<Self, Self::Error> {
let (ref field, operator, values, columns) = tuple;
let (field, operator, values, columns) = tuple;
let (expr, col_def) = columns.for_field(field)?;
Ok(Filter {
operator: match operator {
Expand Down

0 comments on commit 029e27b

Please sign in to comment.