[rust_cli] Consume result

In the last change we started calling the "show_command_hint" function,
but missed to consume it's result.

Change-Id: Icbbe52494db088c12d7cf77f8d179dfd9472c8a7
Signed-off-by: gtema <artem.goncharov@gmail.com>
This commit is contained in:
gtema
2025-09-06 15:39:22 +02:00
parent 173a5e7132
commit 7794508262
2 changed files with 2 additions and 2 deletions

View File

@@ -267,7 +267,7 @@ impl {{ target_class_name }}Command {
{%- endif %} {#- specialities #}
// Show command specific hints
op.show_command_hint();
op.show_command_hint()?;
Ok(())
}
}

View File

@@ -114,7 +114,7 @@ impl fooCommand {
let data = ep.query_async(client).await?;
op.output_single::<rsp>(data)?;
// Show command specific hints
op.show_command_hint();
op.show_command_hint()?;
Ok(())
}
}