Removed self from super().__init__(self)

Removed self from super().__init__(self) in WindowsGameIO
This commit is contained in:
Martysh12 2021-12-20 08:16:09 +02:00 committed by John McCardle
parent cd91488a1b
commit 82186e4a3a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class AbstractGameIO(ABC):
class WindowsGameIO(AbstractGameIO):
def __init__(self):
super().__init__(self)
super().__init__()
self.d = d3dshot.create()
def fetch_sshot(self):