From 18d790810e77de61d4a7a3b61d8868fc1ad1e913 Mon Sep 17 00:00:00 2001 From: Mate Barany Date: Mon, 7 Oct 2024 13:31:01 +0200 Subject: [PATCH] Remove unused parameters, variables from cldr.py and ldml.py Found these while adding type annotations. Task-number: QTBUG-129566 Change-Id: I51c8e5676f958094946c0e6f396b98c083fd9de0 Reviewed-by: Edward Welbourne (cherry picked from commit ba9d6b261b04119b15d27f3f57dcfe0aadad5012) --- util/locale_database/cldr.py | 2 +- util/locale_database/ldml.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util/locale_database/cldr.py b/util/locale_database/cldr.py index 4c1a8fbf28f..836e98dab61 100644 --- a/util/locale_database/cldr.py +++ b/util/locale_database/cldr.py @@ -280,7 +280,7 @@ class CldrReader (object): currencyRounding = int(rounding)) locale.update(scan.currencyData(iso)) - locale.update(scan.numericData(self.root.numberSystem, self.whitter)) + locale.update(scan.numericData(self.root.numberSystem)) locale.update(scan.textPatternData()) locale.update(scan.endonyms(language, script, territory, variant)) locale.update(scan.unitData()) # byte, kB, MB, GB, ..., KiB, MiB, GiB, ... diff --git a/util/locale_database/ldml.py b/util/locale_database/ldml.py index 6c692356b89..468311268bc 100644 --- a/util/locale_database/ldml.py +++ b/util/locale_database/ldml.py @@ -281,7 +281,7 @@ class LocaleScanner (object): yield 'currencySymbol', symbol yield 'currencyDisplayName', name - def numericData(self, lookup, complain = lambda text: None): + def numericData(self, lookup): """Generate assorted numeric data for the locale. First argument, lookup, is a callable that maps a numbering