[indic-generator] Ouch

Not sure how this was passing tests still.
This commit is contained in:
Behdad Esfahbod 2022-06-09 07:33:43 -06:00
parent f0269e0f1b
commit 0ec4dcb93d
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ for key, (cat, pos, block) in data.items():
data = new_data
for k,new_cat in category_overrides.items():
(cat, pos, block) in data.get(k, defaults)
(cat, pos, block) = data.get(k, defaults)
data[k] = (new_cat, pos, block)
values = [{_: 1} for _ in defaults]