cargo fmt
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Alex 2022-07-04 12:11:47 +02:00
parent 31334b6525
commit 79f524f1bb
Signed by: lx
GPG key ID: 0E496D15096376BE

View file

@ -343,7 +343,9 @@ async fn main() -> Result<(), Error> {
causality,
output_kind,
} => {
let res_opt = client.poll_item(&partition_key, &sort_key, causality.into(), None).await?;
let res_opt = client
.poll_item(&partition_key, &sort_key, causality.into(), None)
.await?;
if let Some(res) = res_opt {
output_kind.display_output(res);
} else {