a possible minor bug in lacosmic.py
Opened this issue · 0 comments
liyropt commented
line 147: if len(new_bpix > 1000):
The Python 3.9 interpreter reports an running error. I guess the line should changed into:
if len(new_bpix) > 1000:
Is that right?