mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 09:25:38 +02:00
Clippy fixes for Rust 1.58 (#733)
* Clippy fixes for Rust 1.58 * Try different message
This commit is contained in:
@ -193,11 +193,7 @@ fn create_grid_output(
|
||||
.unwrap_or_default();
|
||||
// eprintln!("ansi_style: {:?}", &ansi_style);
|
||||
|
||||
let item = format!(
|
||||
"{} {}",
|
||||
icon_style.apply(icon).to_string(),
|
||||
ansi_style.apply(value).to_string()
|
||||
);
|
||||
let item = format!("{} {}", icon_style.apply(icon), ansi_style.apply(value));
|
||||
|
||||
let mut cell = Cell::from(item);
|
||||
cell.alignment = Alignment::Left;
|
||||
|
Reference in New Issue
Block a user