Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
`error: No return value expected`
  • Loading branch information
elsaferrara committed Jan 23, 2025
1 parent b473f50 commit ed63f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/e3/testsuite/report/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def display_failures(
)


def main(argv: Optional[List[str]] = None) -> None:
def main(argv: Optional[List[str]] = None) -> int:
args = args_parser.parse_args(argv)
new_index = ReportIndex.read(args.report)
old_index = (
Expand Down

0 comments on commit ed63f2c

Please sign in to comment.