Skip to content

Commit

Permalink
Missing a logical not...
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleaoman committed Oct 8, 2024
1 parent 53c96f8 commit a12c933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velociraptor/catalogue/velociraptor_catalogue.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def getter(self):
if (
np.ndim(mask) != 0
and np.issubdtype(np.array(mask).dtype, np.integer)
and np.all(mask[:-1] < mask[1:])
and not np.all(mask[:-1] < mask[1:])
):
# We have a mask picking out items by index, and it's
# not sorted. hdf5 demands that it be sorted.
Expand Down

0 comments on commit a12c933

Please sign in to comment.