Skip to content

Commit

Permalink
don't name positional arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Yay295 committed Aug 28, 2024
1 parent b229d82 commit 081f37f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/PIL/EpsImagePlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,12 +361,7 @@ def read_comment(s: str) -> bool:
)

self.tile = [
ImageFile._Tile(
codec_name="eps",
extents=(0, 0) + self._size,
offset=offset,
args=(length, bounding_box),
)
ImageFile._Tile("eps", (0, 0) + self._size, offset, (length, bounding_box))
]

def _find_offset(self, fp: IO[bytes]) -> tuple[int, int]:
Expand Down

0 comments on commit 081f37f

Please sign in to comment.