Skip to content

Commit d5f63ab

Browse files
committed
fix: missed ukraine ґ letter
1 parent 291a0c8 commit d5f63ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

typetrainer/tutors/uk.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ def make_lengths_seq(words):
2222
yield t, w
2323

2424
def split_to_words(text, level):
25-
filter_non_word = re.compile(u'(?iu)[^а-я\'ієї]+')
25+
filter_non_word = re.compile(u'(?iu)[^а-я\'ієїґ]+')
2626

2727
charsets = {
28-
'basic': u'(?iu)[а-я\'ієї]+',
29-
'advanced': u'(?iu)[а-я\'ієї,.:;"!]+'
28+
'basic': u'(?iu)[а-я\'ієїґ]+',
29+
'advanced': u'(?iu)[а-я\'ієїґ,.:;"!]+'
3030
}
3131

3232
if level == 'basic':

0 commit comments

Comments
 (0)