style: apply nix fmt

This commit is contained in:
müde 2026-07-05 22:24:42 +02:00
commit e1e3bda94a
7 changed files with 22 additions and 10 deletions

View file

@ -58,7 +58,10 @@ impl Claude {
})?;
if let Some(mut stdin) = child.stdin.take() {
stdin.write_all(prompt.as_bytes()).await.map_err(Error::Stdin)?;
stdin
.write_all(prompt.as_bytes())
.await
.map_err(Error::Stdin)?;
// Best-effort flush/close; claude sees EOF and starts the turn.
stdin.shutdown().await.ok();
}