diff options
| author | Ján Jančár | 2022-03-01 12:17:51 +0100 |
|---|---|---|
| committer | GitHub | 2022-03-01 12:17:51 +0100 |
| commit | 84ad76bed4b301e1158332ef741cf5b64b2cd11b (patch) | |
| tree | aa8e99117cbb914cb14307d9a39dc5fac2496582 | |
| parent | 760a7afd6e97f9c75513af3def66cdac386bec69 (diff) | |
| parent | 82d968773ad1e6828ca38dfcc6f2ae05a89d268c (diff) | |
| download | pyecsca-84ad76bed4b301e1158332ef741cf5b64b2cd11b.tar.gz pyecsca-84ad76bed4b301e1158332ef741cf5b64b2cd11b.tar.zst pyecsca-84ad76bed4b301e1158332ef741cf5b64b2cd11b.zip | |
Merge pull request #16 from J08nY/deepsource-fix-3bd25dcf
Remove implicit `object` from the base class
| -rw-r--r-- | test/utils.py | 2 |
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 |
