Skip to content

Commit

Permalink
Merge pull request #8582 from radarhere/imagefile_tile
Browse files Browse the repository at this point in the history
ImageFile tile is never None
  • Loading branch information
hugovk authored Dec 3, 2024
2 parents 7850465 + 3ce33a2 commit 76356c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/ImageFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(
self.custom_mimetype: str | None = None

self.tile: list[_Tile] = []
""" A list of tile descriptors, or ``None`` """
""" A list of tile descriptors """

self.readonly = 1 # until we know better

Expand Down

0 comments on commit 76356c5

Please sign in to comment.