Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dantleech committed Nov 12, 2024
1 parent 300a70e commit 6a9d5d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/expr/evaluator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl Evaluator {
Evalue::Number(n) => {
Err(format!("expression must evluate to a boolean, got {:?}: {:?}", expr, n).to_string())
}
Evalue::Date(_) | Evalue::String(_) | Evalue::Number(_) => {
Evalue::Date(_) | Evalue::String(_) => {
Err(format!("expression must evluate to a boolean, got: {:?}", expr).to_string())
}
Evalue::Bool(b) => Ok(b),
Expand Down
2 changes: 1 addition & 1 deletion src/store/activity.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{cmp::Ordering, fmt::Display};

use chrono::{NaiveDateTime, NaiveDate};
use chrono::NaiveDateTime;
use crossterm::event::KeyCode;
use geo_types::LineString;
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit 6a9d5d7

Please sign in to comment.