()
| 37 | |
| 38 | |
| 39 | def parse_args() -> argparse.Namespace: |
| 40 | parser = argparse.ArgumentParser() |
| 41 | parser.add_argument("--report_a_path", type=Path, required=True) |
| 42 | parser.add_argument("--report_b_path", type=Path, required=True) |
| 43 | return parser.parse_args() |
| 44 | |
| 45 | |
| 46 | def main() -> None: |