From 4e6159725227de952f0c578595423aa51d9a0b34 Mon Sep 17 00:00:00 2001 From: tassaron Date: Thu, 28 Apr 2022 19:26:09 -0400 Subject: change call to superclass __init__ to super() --- src/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3