PyWiFeS / pipeline

The Python data reduction pipeline for WiFeS
7 stars 26 forks source link

a possible minor bug in lacosmic.py #22

Open liyropt opened 2 years ago

liyropt commented 2 years ago

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?