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 think line 34 should be tokens_capitalized = [token[0].upper()+token[1:].lower() for token in tokens if len(token)>1] instead of tokens_capitalized = [token[0].upper()+token[1:].lower() for token in tokens. It helps to resolve the "string index out of range" issue
The text was updated successfully, but these errors were encountered:
shashwatup9k
changed the title
Issues in softconf2aclpu
Issues in softconf2aclpub.py
May 5, 2024
I think line 34 should be
tokens_capitalized = [token[0].upper()+token[1:].lower() for token in tokens if len(token)>1]
instead oftokens_capitalized = [token[0].upper()+token[1:].lower() for token in tokens
. It helps to resolve the "string index out of range" issueThe text was updated successfully, but these errors were encountered: