Removed self from super().__init__(self) in LinuxGameIO

This commit is contained in:
John McCardle 2021-12-20 04:39:49 -05:00
commit 113d93773e

View file

@ -60,7 +60,7 @@ class WindowsGameIO(AbstractGameIO):
class LinuxGameIO(AbstractGameIO):
def __init__(self):
super().__init__(self)
super().__init__()
def fetch_sshot(self):
return pyautogui.screenshot(region=self.loc)