From 1720ee3bbca9581e77a51a155f00707c7902d2fc Mon Sep 17 00:00:00 2001 From: John McCardle Date: Sun, 19 Dec 2021 14:11:20 -0500 Subject: [PATCH] remove behavior from abstract base method --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index bb97a64..a13fbaa 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ class AbstractGameIO(ABC): @abstractmethod def fetch_sshot(self): """Creates a screenshot, and returns it in Pillow format.""" - return pyautogui.screenshot(region=self.loc) + pass @abstractmethod def send_key(self, key: str):