From 82d968773ad1e6828ca38dfcc6f2ae05a89d268c Mon Sep 17 00:00:00 2001 From: deepsource-autofix[bot] Date: Tue, 1 Mar 2022 11:12:22 +0000 Subject: Remove implicit `object` from the base class --- test/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.3.1