Skip to content

Commit

Permalink
feat: add missing sequences
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Aug 11, 2024
1 parent 9a37f13 commit 544676f
Show file tree
Hide file tree
Showing 5 changed files with 3,033 additions and 887 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ All notable changes to this project will be documented in this file.
* Cedi glyph. (``)
* Guarani glyph. (``)

### Fixed

* Bar-hyphen alignment. (`||-`)

## [2.530] — July 27, 2024

### Added
Expand Down
2 changes: 1 addition & 1 deletion scripts/liblilex/features/features_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def items(
fea_name = name.split("/")[0]
if fea_name not in feat_map:
if data is not None and fea_name in data:
feat_map[fea_name] = data[fea_name]
feat_map[fea_name] = data[fea_name] + "\n" + feature.code
else:
feat_map[fea_name] = feature.code
else:
Expand Down
Loading

0 comments on commit 544676f

Please sign in to comment.