(input_path: Path, output_path: Path)
| 61 | @click.argument("input_path", type=click.Path(path_type=Path)) |
| 62 | @click.argument("output_path", type=click.Path(path_type=Path)) |
| 63 | def main(input_path: Path, output_path: Path) -> None: |
| 64 | run_dense(input_path, output_path) |
| 65 | |
| 66 | |
| 67 | if __name__ == "__main__": |