diff --git a/anta/cli/nrfu/commands.py b/anta/cli/nrfu/commands.py index ec23425d7..ee0260498 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 e8b8a0545..bfa87b415 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