Whitespace fix

This commit is contained in:
Marcin Kulik
2026-06-19 17:48:26 +02:00
parent d18b129f8f
commit db415ea4fb

View File

@@ -191,6 +191,7 @@ async fn send_command(
make_command: impl FnOnce(oneshot::Sender<io::Result<()>>) -> Command,
) -> io::Result<()> {
let (result_tx, result_rx) = oneshot::channel();
commands
.send(make_command(result_tx))
.map_err(|_| worker_failed())?;