Closed marcodemutti closed 2 weeks ago
Fix error in the blending_functions.py file (fixes issue #29)
ratio[ratio == np.NAN] = 0.0
changed to:
ratio[np.isnan(ratio)] = 0.0
Should be fixed with #32, please reopen/comment if you see it otherwise. Thank you for your contribution!
Fix error in the blending_functions.py file (fixes issue #29)
changed to: