review: delete unused read from source while mapping attributes

This commit is contained in:
2026-03-02 09:27:01 +01:00
parent 150c2263d2
commit b058aac5da

View File

@@ -2,7 +2,6 @@ use crate::*;
pub fn run(row: &rusqlite::Row) -> rusqlite::Result<Attribute> {
let id: String = row.get(0)?;
let _entity_id: String = row.get(1)?;
let signed_int: Option<i64> = row.get(2)?;
let unsigned_int: Option<u32> = row.get(3)?;
let real: Option<f64> = row.get(4)?;