mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
remove some imports duplicated by prelude
This commit is contained in:
parent
2cc23ce2bc
commit
4d4603c078
1 changed files with 3 additions and 9 deletions
|
@ -8,18 +8,12 @@ use strum::{Display, EnumIter, EnumString, IntoEnumIterator};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
backend_proto as pb,
|
backend_proto as pb,
|
||||||
card::{Card, CardId, CardQueue, CardType},
|
card::{CardQueue, CardType},
|
||||||
collection::Collection,
|
notetype::{CardTemplate, NotetypeKind},
|
||||||
config::BoolKey,
|
prelude::*,
|
||||||
decks::{Deck, DeckId},
|
|
||||||
error::{AnkiError, Result},
|
|
||||||
i18n::I18n,
|
|
||||||
notes::{Note, NoteId},
|
|
||||||
notetype::{CardTemplate, Notetype, NotetypeKind},
|
|
||||||
scheduler::{timespan::time_span, timing::SchedTimingToday},
|
scheduler::{timespan::time_span, timing::SchedTimingToday},
|
||||||
template::RenderedNode,
|
template::RenderedNode,
|
||||||
text::{extract_av_tags, html_to_text_line},
|
text::{extract_av_tags, html_to_text_line},
|
||||||
timestamp::{TimestampMillis, TimestampSecs},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Copy, Display, EnumIter, EnumString)]
|
#[derive(Debug, PartialEq, Clone, Copy, Display, EnumIter, EnumString)]
|
||||||
|
|
Loading…
Reference in a new issue