Skip to content

Commit

Permalink
chore: fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Mar 12, 2024
1 parent 3bf0091 commit 39e37ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/library/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ mod _armor {

fn to_ascii_armored_data(&self) -> Vec<u8> { self.serialize() }

fn with_headers_data(headers: Vec<ArmorHeader>, data: Vec<u8>) -> Result<Self, Self::Err> {
fn with_headers_data(_headers: Vec<ArmorHeader>, data: Vec<u8>) -> Result<Self, Self::Err> {
// TODO: check id, dependencies and ISAE
let me = Self::deserialize(&data)?;
let me = Self::deserialize(data)?;
Ok(me)
}
}
Expand Down

0 comments on commit 39e37ee

Please sign in to comment.