mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-14 21:56:56 +03:00
don't name positional arguments
This commit is contained in:
parent
6b168a3e2b
commit
56e4ad0dea
|
@ -361,12 +361,7 @@ class EpsImageFile(ImageFile.ImageFile):
|
|||
)
|
||||
|
||||
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]:
|
||||
|
|
Loading…
Reference in New Issue
Block a user