Skip to content

Commit 5956171

Browse files
author
emason
committed
Second Type Error fixed
1 parent 120fe43 commit 5956171

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
To avoid problem with installation, maybe prefer virtual environnement.
66

77
* ** pip install cython **
8-
* ** python setup.py install**
8+
* ** python setup.py install**

src/py_eddy_tracker/property_objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(self, contlon, contlat, eddy, grd):
8787
self.amplitude = 0 # atleast_1d(0.)
8888
self.local_extrema = None # int(0)
8989
self.local_extrema_inds = None
90-
self.sla = ma.array(self.sla, mask=-self.mask)
90+
self.sla = ma.array(self.sla, mask=~self.mask)
9191

9292
@property
9393
def islice(self):

0 commit comments

Comments
 (0)