(
input_path: Path,
output_path: Path,
seed: int | None,
)
| 52 | @click.argument("output_path", type=click.Path(path_type=Path)) |
| 53 | @click.option("--seed", type=int, default=None) |
| 54 | def main( |
| 55 | input_path: Path, |
| 56 | output_path: Path, |
| 57 | seed: int | None, |
| 58 | ) -> None: |
| 59 | run_sparse(input_path, output_path, seed, "extreme", "video") |
| 60 | |
| 61 | |
| 62 | if __name__ == "__main__": |
no test coverage detected