diff options
| author | tassaron | 2022-04-28 19:26:09 -0400 |
|---|---|---|
| committer | tassaron | 2022-04-28 19:26:09 -0400 |
| commit | 4e6159725227de952f0c578595423aa51d9a0b34 (patch) | |
| tree | 33317aea4f74294b6e32498b9c098f759ac88dae /src | |
| parent | b9a16165106709151b579e82b0aa071d8bb43ad4 (diff) | |
change call to superclass __init__ to super()
Diffstat (limited to 'src')
| -rw-r--r-- | src/command.py | 2 |
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 |
