1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 11:10:20 +01:00

Unify base class using new-style (object).

This commit is contained in:
cxx
2017-10-26 10:16:11 +08:00
committed by Itai Caspi
parent 39cf78074c
commit f43c951c2d
16 changed files with 28 additions and 28 deletions

View File

@@ -24,7 +24,7 @@ from subprocess import call, Popen
killed_processes = []
class Enum:
class Enum(object):
def __init__(self):
pass
@@ -177,7 +177,7 @@ def threaded_cmd_line_run(run_cmd, id=-1):
return result
class Signal:
class Signal(object):
def __init__(self, name):
self.name = name
self.sample_count = 0