aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortassaron2022-04-28 19:26:09 -0400
committertassaron2022-04-28 19:26:09 -0400
commit4e6159725227de952f0c578595423aa51d9a0b34 (patch)
tree33317aea4f74294b6e32498b9c098f759ac88dae
parentb9a16165106709151b579e82b0aa071d8bb43ad4 (diff)
change call to superclass __init__ to super()
-rw-r--r--src/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.py b/src/command.py
index db72de7..267117e 100644
--- a/src/command.py
+++ b/src/command.py
@@ -25,7 +25,7 @@ class Command(QtCore.QObject):
createVideo = QtCore.pyqtSignal()
def __init__(self):
- QtCore.QObject.__init__(self)
+ super()
self.core = core.Core()
core.Core.mode = 'commandline'
self.dataDir = self.core.dataDir