remove some imports duplicated by prelude

This commit is contained in:
Damien Elmes 2021-04-18 19:11:06 +10:00
parent 2cc23ce2bc
commit 4d4603c078

View file

@ -8,18 +8,12 @@ use strum::{Display, EnumIter, EnumString, IntoEnumIterator};
use crate::{
backend_proto as pb,
card::{Card, CardId, CardQueue, CardType},
collection::Collection,
config::BoolKey,
decks::{Deck, DeckId},
error::{AnkiError, Result},
i18n::I18n,
notes::{Note, NoteId},
notetype::{CardTemplate, Notetype, NotetypeKind},
card::{CardQueue, CardType},
notetype::{CardTemplate, NotetypeKind},
prelude::*,
scheduler::{timespan::time_span, timing::SchedTimingToday},
template::RenderedNode,
text::{extract_av_tags, html_to_text_line},
timestamp::{TimestampMillis, TimestampSecs},
};
#[derive(Debug, PartialEq, Clone, Copy, Display, EnumIter, EnumString)]