fixed clippy error

This commit is contained in:
DustInDark
2022-06-26 00:36:51 +09:00
parent 53ca69b05e
commit 9d871d3973

View File

@@ -476,7 +476,7 @@ fn _get_serialized_disp_output(dispformat: Option<DisplayFormat>) -> String {
if configs::CONFIG.read().unwrap().args.full_data {
titles.push("RecordInformation");
}
return titles.join("|").to_string();
return titles.join("|");
}
let mut disp_serializer = csv::WriterBuilder::new()
.double_quote(false)