Merge pull request #5930 from hugovk/rm-__eq__-readonly

Remove readonly from Image.__eq__
This commit is contained in:
Andrew Murray 2022-01-05 08:45:58 +11:00 committed by GitHub
commit 3f77466f11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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