From 09720f0c131a721006a47bb06a759add587bb6df Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 26 Jul 2025 21:23:59 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/translate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/translate.py b/scripts/translate.py index 4bd7fcac1..b78d7211b 100644 --- a/scripts/translate.py +++ b/scripts/translate.py @@ -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()