Skip to content

Commit

Permalink
Merge pull request #5930 from hugovk/rm-__eq__-readonly
Browse files Browse the repository at this point in the history
Remove readonly from Image.__eq__
  • Loading branch information
radarhere committed Jan 4, 2022
2 parents 9f6e947 + e077229 commit 3f77466
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/PIL/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,6 @@ def __eq__(self, other):
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()
)
Expand Down

0 comments on commit 3f77466

Please sign in to comment.