Removed self from super().__init__(self)
Removed self from super().__init__(self) in WindowsGameIO
This commit is contained in:
parent
cd91488a1b
commit
82186e4a3a
|
@ -45,7 +45,7 @@ class AbstractGameIO(ABC):
|
||||||
|
|
||||||
class WindowsGameIO(AbstractGameIO):
|
class WindowsGameIO(AbstractGameIO):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(self)
|
super().__init__()
|
||||||
self.d = d3dshot.create()
|
self.d = d3dshot.create()
|
||||||
|
|
||||||
def fetch_sshot(self):
|
def fetch_sshot(self):
|
||||||
|
|
Loading…
Reference in New Issue