Bug in LKE
PorcupineAndrew opened this issue · 1 comments
PorcupineAndrew commented
## line 275 in LKE.py cause bug in python3,
## Please change it
# from
if str(type(group[i]))=="<type 'list'>":
# to
if type(group[i])==list:
PinjiaHe commented
Thanks for your report! The issue has been fixed.