some more tweaks
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Chris Cochrun 2025-09-17 05:32:25 -05:00
parent de0722b430
commit b03382f687
6 changed files with 33 additions and 32 deletions

View file

@ -1,6 +1,6 @@
use std::mem::replace;
use miette::{Result, miette};
use miette::{miette, Result};
use sqlx::{Connection, SqliteConnection};
#[derive(Debug, Clone)]

View file

@ -181,7 +181,7 @@ impl TryFrom<PathBuf> for Background {
}
}
Err(e) => {
error!("Couldn't canonicalize: {e} {:?}", path);
// error!("Couldn't canonicalize: {e} {:?}", path);
Err(ParseError::CannotCanonicalize)
}
}

View file

@ -11,8 +11,8 @@ use crisp::types::{Keyword, Symbol, Value};
use miette::{IntoDiagnostic, Result};
use serde::{Deserialize, Serialize};
use sqlx::{
Sqlite, SqliteConnection, SqlitePool, pool::PoolConnection,
query, query_as,
pool::PoolConnection, query, query_as, Sqlite, SqliteConnection,
SqlitePool,
};
use std::path::PathBuf;
use tracing::error;