From 504cff4e9928222c628afd80d8710b28353be9eb Mon Sep 17 00:00:00 2001 From: Carl Baillargeon Date: Mon, 8 Jul 2024 16:13:38 -0400 Subject: [PATCH] Fix typos --- anta/cli/nrfu/commands.py | 2 +- anta/result_manager/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anta/cli/nrfu/commands.py b/anta/cli/nrfu/commands.py index ec23425d77..ee02604980 100644 --- a/anta/cli/nrfu/commands.py +++ b/anta/cli/nrfu/commands.py @@ -102,7 +102,7 @@ def tpl_report(ctx: click.Context, template: pathlib.Path, output: pathlib.Path is_flag=True, default=False, show_envvar=True, - help="Flag to determine if only failed tests should be saved in the report", + help="Flag to determine if only failed tests should be saved in the report.", ) def md_report(ctx: click.Context, md_output: pathlib.Path, *, only_failed_tests: bool = False) -> None: """ANTA command to check network state with Markdown report.""" diff --git a/anta/result_manager/__init__.py b/anta/result_manager/__init__.py index e8b8a05456..bfa87b415b 100644 --- a/anta/result_manager/__init__.py +++ b/anta/result_manager/__init__.py @@ -122,7 +122,7 @@ def results(self, value: list[TestResult]) -> None: @property def json(self) -> str: - """Get a JSON representation of all results.""" + """Get a JSON representation of the results.""" return json.dumps([result.model_dump() for result in self._result_entries], indent=4) @property