generated from PlexSheep/rs-base
automatic cargo CI changes
This commit is contained in:
parent
6a5cbcdbea
commit
d3be6ce58e
2 changed files with 2 additions and 3 deletions
|
@ -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> {
|
||||
|
|
|
@ -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};
|
||||
|
|
Loading…
Add table
Reference in a new issue