issues
search
aman2656
/
text2emotion-library
MIT License
55
stars
32
forks
source link
Fix an issue where the word of index 0 is ignored
#12
Open
hyeongukryu
opened
1 year ago
hyeongukryu
commented
1 year ago
0
is a falsy value.
ValueError
is raised if
i not in df['Word']
, so the
if
statement can be safely removed.
0
is a falsy value.ValueError
is raised ifi not in df['Word']
, so theif
statement can be safely removed.