From 2d75e1b7971bf01119c2f130a22badc520a6e585 Mon Sep 17 00:00:00 2001 From: scarf Date: Thu, 31 Aug 2023 21:45:50 +0900 Subject: [PATCH] fix(i18n): remove rogue `return` in `extract_all_from_json_file` (#3106) --- lang/extract_json_strings.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lang/extract_json_strings.py b/lang/extract_json_strings.py index 559a921539e9..d9cc0c93381d 100755 --- a/lang/extract_json_strings.py +++ b/lang/extract_json_strings.py @@ -1372,7 +1372,6 @@ def extract_all_from_dir(state, dir): def extract_all_from_json_file(state, json_file): - return "Extract translatable strings from every object in the specified JSON file." state.current_source_file = json_file log_verbose("Loading {}".format(json_file))