summaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli.py')
-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