summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-02-03 09:23:24 +0100
committerJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-02-03 09:23:24 +0100
commitc969f932fa45c0d193b9254c001145165639961c (patch)
tree612bea5884ac939aa90a07576d46ef5bd0b52728
parenta035795dc6652143bd68617ffa2f4ccc155acc5f (diff)
downloadqtivi-qface-c969f932fa45c0d193b9254c001145165639961c.tar.gz
Smaller fixes for using super in Python3 fashion
-rwxr-xr-xcli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli.py b/cli.py
index d4a620c..a61506d 100755
--- a/cli.py
+++ b/cli.py
@@ -54,7 +54,7 @@ def test_ci():
class RunTestChangeHandler(FileSystemEventHandler):
def __init__(self, clickContext):
- super(RunTestChangeHandler).__init__()
+ super().__init__()
self.clickContext = clickContext
def on_any_event(self, event):
@@ -85,7 +85,7 @@ def test_monitor(ctx):
class RunScriptChangeHandler(FileSystemEventHandler):
def __init__(self, script):
- super(RunTestChangeHandler).__init__()
+ super().__init__()
self.script = script
self.is_running = False