From 43e877e60ef323a3fdf847d60bf02a5068c0972e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A1=BE=E5=B7=8D?= Date: Sun, 15 Sep 2024 21:16:47 +0800 Subject: [PATCH] Error checking self.bases, should be self.aux --- Lib/shaperglot/checks/orthographies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/shaperglot/checks/orthographies.py b/Lib/shaperglot/checks/orthographies.py index 0ffd014..0678408 100644 --- a/Lib/shaperglot/checks/orthographies.py +++ b/Lib/shaperglot/checks/orthographies.py @@ -99,7 +99,7 @@ def execute(self, checker) -> None: if not self.aux: return - missing = sorted([x for x in self.bases if not can_shape(x, checker)]) + missing = sorted([x for x in self.aux if not can_shape(x, checker)]) if missing: checker.results.warn( check_name="orthographies",