MCPcopy Create free account
hub / github.com/fastapi/fastapi / list_all_removable

Function list_all_removable

scripts/translate.py:314–323  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

312
313@app.command()
314def 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()

Callers 1

remove_all_removableFunction · 0.85

Calls 2

get_langsFunction · 0.85
list_removableFunction · 0.85

Tested by

no test coverage detected