automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-08-23 10:10:22 +00:00 committed by github-actions[bot]
parent 6a5cbcdbea
commit d3be6ce58e
2 changed files with 2 additions and 3 deletions

View file

@ -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<Self, Error> {

View file

@ -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};