Use OSError instead of IOError (#9683)

This commit is contained in:
Nikita Sobolev
2023-02-06 21:56:32 +03:00
committed by GitHub
parent c96079f0df
commit f7cb7f33b2
6 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ from typing import Any
from urllib3.exceptions import HTTPError as BaseHTTPError
class RequestException(IOError):
class RequestException(OSError):
response: Any
request: Any
def __init__(self, *args, **kwargs) -> None: ...