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
When I am trying to run Sadhu-colito.py I get "UTF-16 stream does not start with BOM" error. This error gets resolved if we make the following changes:
kriya_mul_list = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] (Lnie 17)
kriya_vibokti_list = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] (Line 23)
all_sentences = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] [Line 35]
exceptional_cases = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] [Line 91]
I request your kind attention in this regard.
The text was updated successfully, but these errors were encountered:
Hello,
Thank you for this amazing work.
When I am trying to run Sadhu-colito.py I get "UTF-16 stream does not start with BOM" error. This error gets resolved if we make the following changes:
kriya_mul_list = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] (Lnie 17)
kriya_vibokti_list = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] (Line 23)
all_sentences = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] [Line 35]
exceptional_cases = [line.rstrip('\n') for line in open(fileName, encoding='utf-8',errors = 'ignore')] [Line 91]
I request your kind attention in this regard.
The text was updated successfully, but these errors were encountered: