Jonas Folkvord Triki
Jonas Folkvord Triki
I managed to narrow down the error to the following. If the string contains the character `İ` and ends with an abbreviation for a month (e.g. `"jan."`, `"feb"`. etc.), then...
As a workaround to the problem, I did the following which seems to work fine in practice: ```python text = "some string" if text.endswith("."): text = replace_contractions(text[:-1]) + "." else:...
Any updates on this @kishorenc?
Any update on this @luin?