Skip to content

Commit

Permalink
Error checking self.bases, should be self.aux
Browse files Browse the repository at this point in the history
  • Loading branch information
GuuuWei authored Sep 15, 2024
1 parent 6908b5c commit 43e877e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/shaperglot/checks/orthographies.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 43e877e

Please sign in to comment.