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):