From 08aa9ce29eb18f507430211b94b4909d2573f984 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Fri, 25 Oct 2019 20:19:58 +0800 Subject: [PATCH] fix: remove unused arguments --- httprunner/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httprunner/client.py b/httprunner/client.py index bd6766c3..bc7cd07e 100644 --- a/httprunner/client.py +++ b/httprunner/client.py @@ -31,8 +31,8 @@ class HttpSession(requests.Session): This is a slightly extended version of `python-request `_'s :py:class:`requests.Session` class and mostly this class works exactly the same. """ - def __init__(self, *args, **kwargs): - super(HttpSession, self).__init__(*args, **kwargs) + def __init__(self): + super(HttpSession, self).__init__() self.init_meta_data() def init_meta_data(self):