aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils.py b/test/utils.py
index eeac169..a74fae4 100644
--- a/test/utils.py
+++ b/test/utils.py
@@ -8,7 +8,7 @@ from pyinstrument import Profiler as PyProfiler
from cProfile import Profile as cProfiler
-class Profiler(object):
+class Profiler:
def __init__(self, prof_type, output_directory, benchmark_name):
self._prof = PyProfiler() if prof_type == "py" else cProfiler()
self._prof_type = prof_type