|
|
@ -267,6 +267,7 @@ def list_outdated(lang: str) -> list[Path]: |
|
|
|
print(outdated_paths) |
|
|
|
return outdated_paths |
|
|
|
|
|
|
|
|
|
|
|
@app.command() |
|
|
|
def update_outdated(lang: str) -> None: |
|
|
|
outdated_paths = list_outdated(lang) |
|
|
@ -276,5 +277,6 @@ def update_outdated(lang: str) -> None: |
|
|
|
print(f"Done updating: {path}") |
|
|
|
print("Done updating all outdated paths") |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
|
|
app() |
|
|
|