Run cargo fix.

This commit is contained in:
Tom Alexander
2023-10-29 22:31:29 -04:00
parent ff57242434
commit ada11816fb
107 changed files with 248 additions and 248 deletions

View File

@@ -1,5 +1,5 @@
use super::macros::intermediate;
use super::registry::Registry;
use crate::error::CustomError;
#[derive(Debug, Clone)]
@@ -7,7 +7,7 @@ pub(crate) struct IEntity {
pub(crate) html: String,
}
intermediate!(IEntity, Entity, original, registry, {
intermediate!(IEntity, Entity, original, _registry, {
Ok(IEntity {
html: original.html.to_owned(),
})