Skip to content

Commit ad78bac

Browse files
committed
fix accidental noqa removal
1 parent 79f4ec3 commit ad78bac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/core/duck_array_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def isnull(data):
191191
dtype = xp.bool_ if hasattr(xp, "bool_") else xp.bool
192192
return full_like(data, dtype=dtype, fill_value=False)
193193
# at this point, array should have dtype=object
194-
elif isinstance(data, np.ndarray) or pd.api.types.is_extension_array_dtype(data):
194+
elif isinstance(data, np.ndarray) or pd.api.types.is_extension_array_dtype(data): # noqa: TID251
195195
return pandas_isnull(data)
196196
else:
197197
# Not reachable yet, but intended for use with other duck array

0 commit comments

Comments
 (0)