···41414242const MIGRATIONS: Migrations<'_> = Migrations::from_slice(MIGRATIONS_SLICE);
43434444-#[allow(clippy::expect_used)]
4444+#[expect(
4545+ clippy::expect_used,
4646+ reason = "If we fail to get DB, we might as well panic."
4747+)]
4548pub fn connect() -> Connection {
4649 let mut conn = Connection::open("./db.db3").expect("Failed to open database file");
4750