diff options
Diffstat (limited to 'test/mitmproxy/tools/benchtool.py')
-rw-r--r-- | test/mitmproxy/tools/benchtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/tools/benchtool.py b/test/mitmproxy/tools/benchtool.py index 17043676..bc68645c 100644 --- a/test/mitmproxy/tools/benchtool.py +++ b/test/mitmproxy/tools/benchtool.py @@ -18,7 +18,7 @@ class ApacheBenchThread(Thread): def __init__(self, concurrency): self.concurrency = concurrency - super(ApacheBenchThread, self).__init__() + super().__init__() def run(self): time.sleep(2) |