Compare commits

...

1 commit

Author SHA1 Message Date
PlexSheep
d3be6ce58e automatic cargo CI changes 2024-08-23 10:10:22 +00:00
2 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,5 @@
use clap::Parser; use clap::Parser;
use eframe::CreationContext; use eframe::CreationContext;
use egui::Stroke;
use libpt::cli::args::VerbosityLevel; use libpt::cli::args::VerbosityLevel;
use libpt::log::{debug, info}; use libpt::log::{debug, info};
@ -34,7 +33,7 @@ pub struct Player {
impl Player { impl Player {
#[inline] #[inline]
pub fn store(&self) -> &Store { pub fn store(&self) -> &Store {
&self.store.as_ref().unwrap() self.store.as_ref().unwrap()
} }
pub fn build() -> Result<Self, Error> { pub fn build() -> Result<Self, Error> {

View file

@ -1,5 +1,5 @@
use std::fs::File; use std::fs::File;
use std::io::{BufReader, Write}; use std::io::Write;
use std::path::PathBuf; use std::path::PathBuf;
use libpt::log::{debug, error, info, warn}; use libpt::log::{debug, error, info, warn};