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