Removed self from super().__init__(self) in LinuxGameIO
This commit is contained in:
parent
82186e4a3a
commit
113d93773e
|
@ -60,7 +60,7 @@ class WindowsGameIO(AbstractGameIO):
|
||||||
|
|
||||||
class LinuxGameIO(AbstractGameIO):
|
class LinuxGameIO(AbstractGameIO):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(self)
|
super().__init__()
|
||||||
|
|
||||||
def fetch_sshot(self):
|
def fetch_sshot(self):
|
||||||
return pyautogui.screenshot(region=self.loc)
|
return pyautogui.screenshot(region=self.loc)
|
||||||
|
|
Loading…
Reference in New Issue