remove behavior from abstract base method

This commit is contained in:
John McCardle 2021-12-19 14:11:20 -05:00
parent 9eb29fc7cc
commit 1720ee3bbc
1 changed files with 1 additions and 1 deletions

View File

@ -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):