diff --git a/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs b/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs index 5b12086..af9a0aa 100644 --- a/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs +++ b/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs @@ -2,7 +2,6 @@ use crate::*; pub fn run(row: &rusqlite::Row) -> rusqlite::Result { let id: String = row.get(0)?; - let _entity_id: String = row.get(1)?; let signed_int: Option = row.get(2)?; let unsigned_int: Option = row.get(3)?; let real: Option = row.get(4)?;