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

This commit is contained in:
Nahor 2024-02-21 12:56:30 -08:00
parent 75fea0935e
commit 54d895e10f
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]