This commit is contained in:
pythondude325 2018-07-06 02:03:18 +00:00 committed by GitHub
commit 701a8a2d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1974,7 +1974,7 @@ class Image(object):
if frame != 0:
raise EOFError
def show(self, title=None, command=None):
def show(self, title=None):
"""
Displays this image. This method is mainly intended for
debugging purposes.
@ -1991,10 +1991,9 @@ class Image(object):
:param title: Optional title to use for the image window,
where possible.
:param command: command used to show the image
"""
_show(self, title=title, command=command)
_show(self, title=title)
def split(self):
"""