-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
In line 2092,
flags = numpy.where(self.flagvals(ecorr.flag)[mask]==ecorr.flagval, self.flagvals(ecorr.flag), '')
is incorrect and causes an np error for models with ecorr values.
It should be replaced by
flags = numpy.where(self.flagvals(ecorr.flag)[mask]==ecorr.flagval, self.flagvals(ecorr.flag)[mask], '')
which will fix this error.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels