cargo clippy fix
This commit is contained in:
parent
8cf2d48a16
commit
5ed7f6b837
8 changed files with 8 additions and 27 deletions
|
@ -133,12 +133,6 @@ pub(crate) fn get_lists(exp: &Value) -> Vec<Value> {
|
|||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// #[test]
|
||||
// fn test_list() {
|
||||
|
|
|
@ -4,7 +4,6 @@ use cosmic::iced::Executor;
|
|||
use miette::{miette, Result};
|
||||
use sqlx::{Connection, SqliteConnection};
|
||||
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Model<T> {
|
||||
pub items: Vec<T>,
|
||||
|
|
|
@ -175,11 +175,9 @@ impl From<&Value> for ServiceItem {
|
|||
Value::Symbol(Symbol(s))
|
||||
if s == "presentation" =>
|
||||
{
|
||||
Self::from(
|
||||
&Presentation::from(
|
||||
background,
|
||||
),
|
||||
)
|
||||
Self::from(&Presentation::from(
|
||||
background,
|
||||
))
|
||||
}
|
||||
_ => todo!(),
|
||||
},
|
||||
|
|
|
@ -535,7 +535,6 @@ impl Song {
|
|||
lyric_list.push(lyric.to_string());
|
||||
} else {
|
||||
// error!("NOT WORKING!");
|
||||
|
||||
};
|
||||
}
|
||||
// for lyric in lyric_list.iter() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue