Skip to content

Commit

Permalink
Merge pull request #78 from GuuuWei/orthographies-aux-repair
Browse files Browse the repository at this point in the history
Error checking self.bases, should be self.aux
  • Loading branch information
simoncozens authored Sep 16, 2024
2 parents 6908b5c + 43e877e commit e319e7f
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 e319e7f

Please sign in to comment.