From 1ad77d70caf6f5d1d9916d385d1eceb21b080353 Mon Sep 17 00:00:00 2001 From: Thomas Grimonet Date: Fri, 12 Jul 2024 18:27:11 +0200 Subject: [PATCH] fix: Remove useless comment in CLI help message --- anta/cli/nrfu/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anta/cli/nrfu/commands.py b/anta/cli/nrfu/commands.py index 05e730003..cd750cb85 100644 --- a/anta/cli/nrfu/commands.py +++ b/anta/cli/nrfu/commands.py @@ -76,7 +76,7 @@ def text(ctx: click.Context) -> None: help="Path to save report as a CSV file", ) def csv(ctx: click.Context, csv_output: pathlib.Path) -> None: - """ANTA command to check network states with CSV result. It only saves test results and not the output from --group-by option.""" + """ANTA command to check network states with CSV result.""" run_tests(ctx) save_to_csv(ctx, csv_file=csv_output) exit_with_code(ctx)