Skip to content

Commit

Permalink
remove unused lifetime
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Nov 15, 2024
1 parent fd63015 commit 8a6c7a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/kitsune-email/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ where
B: AsyncTransport + Sync,
Error: From<<B as AsyncTransport>::Error>,
{
pub async fn send<'a, I, M>(&self, mailboxes: I, email: &M) -> Result<()>
pub async fn send<I, M>(&self, mailboxes: I, email: &M) -> Result<()>

Check warning on line 30 in crates/kitsune-email/src/lib.rs

View check run for this annotation

Codecov / codecov/patch

crates/kitsune-email/src/lib.rs#L30

Added line #L30 was not covered by tests
where
I: Iterator<Item = Mailbox> + Send,
M: RenderableEmail,
Expand Down

0 comments on commit 8a6c7a7

Please sign in to comment.