(language: Annotated[str, typer.Option(envvar="LANGUAGE")])
| 325 | |
| 326 | @app.command() |
| 327 | def remove_removable(language: Annotated[str, typer.Option(envvar="LANGUAGE")]) -> None: |
| 328 | removable_paths = list_removable(language) |
| 329 | for path in removable_paths: |
| 330 | path.unlink() |
| 331 | print(f"Removed: {path}") |
| 332 | print("Done removing all removable paths") |
| 333 | |
| 334 | |
| 335 | @app.command() |
nothing calls this directly
no test coverage detected