We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9005241 commit b28eb82Copy full SHA for b28eb82
1 file changed
psy_simple/plotters.py
@@ -238,9 +238,9 @@ def update(self, value):
238
239
def diff(self, value):
240
try:
241
- return ~(
+ return not (
242
(np.shape(value) == np.shape(self.value))
243
- & np.all(value == self.value)
+ and np.all(value == self.value)
244
)
245
except TypeError:
246
return True
@@ -3817,6 +3817,8 @@ class DataGrid(Formatoption):
3817
3818
name = "Grid of the data"
3819
3820
+ data_dependent = True
3821
+
3822
@property
3823
def xcoord(self):
3824
"""The x coordinate :class:`xarray.Variable`"""
0 commit comments