Remove readonly from Image.__eq__

This commit is contained in:
Hugo van Kemenade 2022-01-04 11:32:15 +02:00
parent 9f6e947269
commit e077229d7a

View File

@ -627,7 +627,6 @@ class Image:
and self.size == other.size and self.size == other.size
and self.info == other.info and self.info == other.info
and self._category == other._category and self._category == other._category
and self.readonly == other.readonly
and self.getpalette() == other.getpalette() and self.getpalette() == other.getpalette()
and self.tobytes() == other.tobytes() and self.tobytes() == other.tobytes()
) )