From c969f932fa45c0d193b9254c001145165639961c Mon Sep 17 00:00:00 2001 From: Juergen Bocklage-Ryannel Date: Fri, 3 Feb 2017 09:23:24 +0100 Subject: Smaller fixes for using super in Python3 fashion --- cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli.py') 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 -- cgit v1.2.1