From 09261ccf12fbf0a8d31ff17d39f9db17604b2490 Mon Sep 17 00:00:00 2001 From: kkscilife <126147887+kkscilife@users.noreply.github.com> Date: Mon, 10 Feb 2025 23:48:02 +0800 Subject: [PATCH] [Bugfix] fix file name of docstring in utils/check_table.py (#36108) fix file name Co-authored-by: kkscilife --- utils/check_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/check_table.py b/utils/check_table.py index 957bfd5af6a..9ce7deaf6e3 100644 --- a/utils/check_table.py +++ b/utils/check_table.py @@ -18,7 +18,7 @@ Utility that checks the big table in the file docs/source/en/index.md and potent Use from the root of the repo with: ```bash -python utils/check_inits.py +python utils/check_table.py ``` for a check that will error in case of inconsistencies (used by `make repo-consistency`). @@ -26,7 +26,7 @@ for a check that will error in case of inconsistencies (used by `make repo-consi To auto-fix issues run: ```bash -python utils/check_inits.py --fix_and_overwrite +python utils/check_table.py --fix_and_overwrite ``` which is used by `make fix-copies`.