From d3be6ce58e29523240e18fed611974d9011939cf Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Fri, 23 Aug 2024 10:10:22 +0000 Subject: [PATCH] automatic cargo CI changes --- src/player/mod.rs | 3 +-- src/store/mod.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/player/mod.rs b/src/player/mod.rs index 1218ab8..6703e12 100644 --- a/src/player/mod.rs +++ b/src/player/mod.rs @@ -1,6 +1,5 @@ use clap::Parser; use eframe::CreationContext; -use egui::Stroke; use libpt::cli::args::VerbosityLevel; use libpt::log::{debug, info}; @@ -34,7 +33,7 @@ pub struct Player { impl Player { #[inline] pub fn store(&self) -> &Store { - &self.store.as_ref().unwrap() + self.store.as_ref().unwrap() } pub fn build() -> Result { diff --git a/src/store/mod.rs b/src/store/mod.rs index 0a46662..e4b03bd 100644 --- a/src/store/mod.rs +++ b/src/store/mod.rs @@ -1,5 +1,5 @@ use std::fs::File; -use std::io::{BufReader, Write}; +use std::io::Write; use std::path::PathBuf; use libpt::log::{debug, error, info, warn};