mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 21:28:21 +00:00
Fix make lint
This commit is contained in:
@@ -192,17 +192,10 @@ impl Config {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
RetrievableConfigField::TelemetryEnabled => {
|
RetrievableConfigField::TelemetryEnabled => {
|
||||||
println!("{}", config.telemetry.enabled.to_string().replace('\"', ""));
|
println!("{}", config.telemetry.enabled.replace('\"', ""));
|
||||||
}
|
}
|
||||||
RetrievableConfigField::UpdateNotificationsEnabled => {
|
RetrievableConfigField::UpdateNotificationsEnabled => {
|
||||||
println!(
|
println!("{}", config.update_notifications.enabled.replace('\"', ""));
|
||||||
"{}",
|
|
||||||
config
|
|
||||||
.update_notifications
|
|
||||||
.enabled
|
|
||||||
.to_string()
|
|
||||||
.replace('\"', "")
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user