fix(redundant-import): fix a warning and CI failure in nightly (#348)

This commit is contained in:
Nahor 2024-02-21 14:05:17 -08:00 committed by GitHub
parent 7d9dfc6e8e
commit 6ea86a2248
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 7 deletions

View File

@ -1,12 +1,7 @@
/*!
Default trait implementations for [`SourceCode`].
*/
use std::{
borrow::{Cow, ToOwned},
collections::VecDeque,
fmt::Debug,
sync::Arc,
};
use std::{borrow::Cow, collections::VecDeque, fmt::Debug, sync::Arc};
use crate::{MietteError, MietteSpanContents, SourceCode, SourceSpan, SpanContents};

View File

@ -2,7 +2,6 @@ mod drop;
use self::drop::{DetectDrop, Flag};
use miette::Report;
use std::marker::Unpin;
use std::mem;
#[test]