()
| 334 | |
| 335 | @app.command() |
| 336 | def remove_all_removable() -> None: |
| 337 | all_removable = list_all_removable() |
| 338 | for removable_path in all_removable: |
| 339 | removable_path.unlink() |
| 340 | print(f"Removed: {removable_path}") |
| 341 | print("Done removing all removable paths") |
| 342 | |
| 343 | |
| 344 | @app.command() |
nothing calls this directly
no test coverage detected