From d96e6e4075477a72af1fb6dffa98e88e248a70b0 Mon Sep 17 00:00:00 2001 From: Plamen Dimitrov Date: Thu, 18 May 2023 15:18:49 +0300 Subject: [PATCH] Fix a case of image docstring parameter --- guibot/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guibot/controller.py b/guibot/controller.py index 3063e641..6631c52e 100644 --- a/guibot/controller.py +++ b/guibot/controller.py @@ -223,7 +223,7 @@ def capture_screen(self, *args): nothing to obtain an image of the full screen :type args: [int] or :py:class:`region.Region` or None :returns: image of the current screen - :rtype: :py:class:`image.Image` + :rtype: :py:class:`target.Image` :raises: :py:class:`NotImplementedError` if the base class method is called """ raise NotImplementedError("Method is not available for this controller implementation")