diff options
| author | tassaron | 2022-04-29 12:58:26 -0400 |
|---|---|---|
| committer | tassaron | 2022-04-29 13:06:01 -0400 |
| commit | 069edd9086ad7a99c78c5637af23d50a633396cf (patch) | |
| tree | a9d2d704a477b119ef792c4c44190278c0e00ed5 /src/command.py | |
| parent | 5a95302bb50766b169cc897a3f5c03c3fb83daa3 (diff) | |
use super().__init__ in the modern python3 style
Diffstat (limited to 'src/command.py')
| -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 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 |
