diff options
author | Juergen Bocklage-Ryannel <[email protected]> | 2017-02-03 09:23:24 +0100 |
---|---|---|
committer | Juergen Bocklage-Ryannel <[email protected]> | 2017-02-03 09:23:24 +0100 |
commit | c969f932fa45c0d193b9254c001145165639961c (patch) | |
tree | 612bea5884ac939aa90a07576d46ef5bd0b52728 /cli.py | |
parent | a035795dc6652143bd68617ffa2f4ccc155acc5f (diff) |
Smaller fixes for using super in Python3 fashion
Diffstat (limited to 'cli.py')
-rwxr-xr-x | cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |