Skip to content

Commit

Permalink
Added strict type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Dec 25, 2023
1 parent d2dc8d3 commit f8d7503
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/PIL/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ def quantize(

return im

def copy(self):
def copy(self) -> Image:
"""
Copies this image. Use this method if you wish to paste things
into an image, but still retain the original.
Expand Down Expand Up @@ -2450,7 +2450,7 @@ def save(self, fp, format=None, **params):
if open_fp:
fp.close()

def seek(self, frame):
def seek(self, frame) -> Image:
"""
Seeks to the given frame in this sequence file. If you seek
beyond the end of the sequence, the method raises an
Expand Down Expand Up @@ -2537,7 +2537,7 @@ def getchannel(self, channel):

return self._new(self.im.getband(channel))

def tell(self):
def tell(self) -> int:
"""
Returns the current frame number. See :py:meth:`~PIL.Image.Image.seek`.
Expand Down

0 comments on commit f8d7503

Please sign in to comment.