Corrected Record::new().
Some checks failed
MoreThanText/morethantext/pipeline/head There was a failure building this commit

This commit is contained in:
2024-12-08 07:40:33 -05:00
parent a26471088d
commit a86cbacf7b
3 changed files with 98 additions and 26 deletions

View File

@ -1,4 +1,4 @@
use crate::data::{id::IDError, DBError, table::TBLError};
use crate::data::{id::IDError, table::TBLError, DBError};
use std::{error::Error, fmt};
#[derive(Debug)]
@ -109,7 +109,6 @@ impl From<TBLError> for MTTError {
}
}
#[cfg(test)]
mod errors {
use super::*;