(filename: str, output: Path | None)
| 14 | |
| 15 | |
| 16 | def _build_rerun_command(filename: str, output: Path | None) -> str: |
| 17 | command = f"marimo convert {filename}" |
| 18 | if output is not None: |
| 19 | command = f"{command} -o {output}" |
| 20 | return command |
| 21 | |
| 22 | |
| 23 | @click.argument("filename", required=True) |
no outgoing calls
no test coverage detected
searching dependent graphs…