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

This commit is contained in:
John McCardle 2021-12-20 04:39:49 -05:00
parent 82186e4a3a
commit 113d93773e
1 changed files with 1 additions and 1 deletions

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)