Skip to content
Snippets Groups Projects
Commit 36919ca8 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

Info: use grids to compare masks in __eq__

parent 3e97e4d3
No related branches found
No related tags found
1 merge request!286Add mask to Info object
......@@ -174,7 +174,7 @@ class Info:
return (
self.grid == other.grid
and self.meta == other.meta
and masks_equal(self.mask, other.mask)
and masks_equal(self.mask, other.mask, self.grid, other.grid)
)
def __getattr__(self, name):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment