mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 11:55:55 +02:00
removed unwraps (#430)
This commit is contained in:
@ -875,7 +875,7 @@ impl WrappedTable {
|
||||
break;
|
||||
}
|
||||
|
||||
writeln!(&mut total_output, "{}", output).unwrap();
|
||||
writeln!(&mut total_output, "{}", output).expect("writing should be done to buffer");
|
||||
}
|
||||
total_output
|
||||
}
|
||||
|
Reference in New Issue
Block a user