Skip to content

Commit ce8759f

Browse files
committed
don't name positional arguments
1 parent c946381 commit ce8759f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/PIL/EpsImagePlugin.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,7 @@ def read_comment(s: str) -> bool:
361361
)
362362

363363
self.tile = [
364-
ImageFile._Tile(
365-
codec_name="eps",
366-
extents=(0, 0) + self._size,
367-
offset=offset,
368-
args=(length, bounding_box),
369-
)
364+
ImageFile._Tile("eps", (0, 0) + self._size, offset, (length, bounding_box))
370365
]
371366

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

0 commit comments

Comments
 (0)