Fix undefined names

This commit is contained in:
Ines Montani 2019-03-09 01:35:36 +01:00
parent 78aa663f79
commit b7f9cbdc83

View File

@ -1,7 +1,6 @@
# coding: utf8
from __future__ import unicode_literals
class IrishMorph:
consonants = ['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'w', 'x', 'z']
broad_vowels = ['a', 'á', 'o', 'ó', 'u', 'ú']
slender_vowels = ['e', 'é', 'i', 'í']
@ -30,4 +29,3 @@ class IrishMorph:
return word[:-1]
else:
return word