You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting error messages when I try to ask for the accent on a word with a grave accent.
from greek_accentuation.characters import *
from greek_accentuation.syllabify import *
from greek_accentuation.accentuation import *
display_accentuation(get_accentuation(('τὴν')))
Traceback (most recent call last):
File "", line 1, in
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/greek_accentuation/accentuation.py", line 68, in display_accentuation
return accentuation.name.lower()
AttributeError: 'NoneType' object has no attribute 'name'
The text was updated successfully, but these errors were encountered:
Remember that the point of get_accentuation is to tell you the type of word accentuation (e.g. "oxytone") of a normalized word in isolation. See my comments on #17
I am getting error messages when I try to ask for the accent on a word with a grave accent.
The text was updated successfully, but these errors were encountered: