mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-10 02:09:51 +08:00
fix: remove unused arguments
This commit is contained in:
@@ -31,8 +31,8 @@ class HttpSession(requests.Session):
|
|||||||
This is a slightly extended version of `python-request <http://python-requests.org>`_'s
|
This is a slightly extended version of `python-request <http://python-requests.org>`_'s
|
||||||
:py:class:`requests.Session` class and mostly this class works exactly the same.
|
:py:class:`requests.Session` class and mostly this class works exactly the same.
|
||||||
"""
|
"""
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self):
|
||||||
super(HttpSession, self).__init__(*args, **kwargs)
|
super(HttpSession, self).__init__()
|
||||||
self.init_meta_data()
|
self.init_meta_data()
|
||||||
|
|
||||||
def init_meta_data(self):
|
def init_meta_data(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user