Skip to content

Commit

Permalink
ignore flake8 error
Browse files Browse the repository at this point in the history
the command-parser for the `verify` subcommand is never used directly.
But as we might want to expand the parser and for consistency, we want to keep it around
  • Loading branch information
Cube707 committed Feb 10, 2025
1 parent 82aca4b commit 029f0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion junitparser/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _parser(prog_name=None): # pragma: no cover
)

# command: verify
verify_parser = command_parser.add_parser(
verify_parser = command_parser.add_parser( # noqa: F841
"verify",
help="Return a non-zero exit code if one of the testcases failed or errored.",
parents=[abstract_parser],
Expand Down

0 comments on commit 029f0f6

Please sign in to comment.