Skip to content

Commit

Permalink
Don't check auxiliaries...
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Oct 16, 2023
1 parent 9e3ab40 commit 519665b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shaperglot/checks/orthographies.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def __init__(self, lang):
exemplar_chars = lang.get("exemplarChars", {})
marks = exemplar_chars.get("marks", "").replace("◌", "").split() or []
bases = parse_bases(exemplar_chars.get("base", ""))
aux = parse_bases(exemplar_chars.get("auxiliary", ""))
bases = bases + aux
#aux = parse_bases(exemplar_chars.get("auxiliary", ""))
#bases = bases + aux
self.all_glyphs = marks + bases
self.marks = set(marks)
self.bases = set(bases) - self.marks
Expand Down

0 comments on commit 519665b

Please sign in to comment.