aboutsummaryrefslogtreecommitdiff
path: root/src/command.py
diff options
context:
space:
mode:
authortassaron2022-04-29 12:58:26 -0400
committertassaron2022-04-29 13:06:01 -0400
commit069edd9086ad7a99c78c5637af23d50a633396cf (patch)
treea9d2d704a477b119ef792c4c44190278c0e00ed5 /src/command.py
parent5a95302bb50766b169cc897a3f5c03c3fb83daa3 (diff)
use super().__init__ in the modern python3 style
Diffstat (limited to 'src/command.py')
-rw-r--r--src/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.py b/src/command.py
index 267117e..cc13684 100644
--- a/src/command.py
+++ b/src/command.py
@@ -25,7 +25,7 @@ class Command(QtCore.QObject):
createVideo = QtCore.pyqtSignal()
def __init__(self):
- super()
+ super().__init__()
self.core = core.Core()
core.Core.mode = 'commandline'
self.dataDir = self.core.dataDir