fix super().__del__ cause forever loop

This commit is contained in:
lyon 2022-11-24 01:45:49 +08:00
parent bf76bf859b
commit daf111eaea
2 changed files with 0 additions and 6 deletions

View File

@ -5,9 +5,6 @@ class Response(_requests.Response):
def __init__(self):
super().__init__()
def __del__(self):
super().__del__()
def _append_params_to_url(rqst: Response, url: str, params: dict) -> int:
if params is None:

View File

@ -5,9 +5,6 @@ class Response(_requests.Response):
def __init__(self):
super().__init__()
def __del__(self):
super().__del__()
def _append_params_to_url(rqst: Response, url: str, params: dict) -> int:
if params is None: