()
| 312 | |
| 313 | @app.command() |
| 314 | def list_all_removable() -> list[Path]: |
| 315 | all_removable_paths: list[Path] = [] |
| 316 | langs = get_langs() |
| 317 | for lang in langs: |
| 318 | if lang == "en": |
| 319 | continue |
| 320 | removable_paths = list_removable(lang) |
| 321 | all_removable_paths.extend(removable_paths) |
| 322 | print(all_removable_paths) |
| 323 | return all_removable_paths |
| 324 | |
| 325 | |
| 326 | @app.command() |
no test coverage detected