Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
carl-baillargeon committed Jul 8, 2024
1 parent a47dfa9 commit 504cff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion anta/cli/nrfu/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down
2 changes: 1 addition & 1 deletion anta/result_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 504cff4

Please sign in to comment.