Skip to content
Snippets Groups Projects
Unverified Commit e00f826e authored by GyDi's avatar GyDi
Browse files

fix: lint

parent 24f4e8ab
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,6 @@ pub async fn enhance_profiles() -> CmdResult { ...@@ -24,7 +24,6 @@ pub async fn enhance_profiles() -> CmdResult {
Ok(()) Ok(())
} }
#[deprecated]
#[tauri::command] #[tauri::command]
pub async fn import_profile(url: String, option: Option<PrfOption>) -> CmdResult { pub async fn import_profile(url: String, option: Option<PrfOption>) -> CmdResult {
let item = wrap_err!(PrfItem::from_url(&url, None, None, option).await)?; let item = wrap_err!(PrfItem::from_url(&url, None, None, option).await)?;
......
...@@ -79,6 +79,7 @@ impl CoreManager { ...@@ -79,6 +79,7 @@ impl CoreManager {
pub async fn run_core(&self) -> Result<()> { pub async fn run_core(&self) -> Result<()> {
let config_path = Config::generate_file(ConfigType::Run)?; let config_path = Config::generate_file(ConfigType::Run)?;
#[allow(unused_mut)]
let mut should_kill = match self.sidecar.lock().take() { let mut should_kill = match self.sidecar.lock().take() {
Some(child) => { Some(child) => {
log::debug!(target: "app", "stop the core by sidecar"); log::debug!(target: "app", "stop the core by sidecar");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment