savoirfairelinux / num2words

Modules to convert numbers to words. 42 --> forty-two
GNU Lesser General Public License v2.1
823 stars 496 forks source link

'Num2Word_ID' object has no attribute 'str_to_number'. #476

Open auahelap opened 2 years ago

auahelap commented 2 years ago

Hello,

I am trying to use num2words for id (Indonesia language). however it give me 'Num2Word_ID' object has no attribute 'str_to_number'.

any idea why?

SkiBY commented 1 year ago

Because there is no inheritance in ID language set

class Num2Word_ID():

and it should be

class Num2Word_ID(Num2Word_Base): or similar