From 12c91b1fca301ff2b16604b25b616bf7717677e3 Mon Sep 17 00:00:00 2001 From: sandeepsuryaprasad Date: Sat, 14 Dec 2024 15:36:20 +0530 Subject: [PATCH] fixed linting issues --- py/selenium/webdriver/remote/client_config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/py/selenium/webdriver/remote/client_config.py b/py/selenium/webdriver/remote/client_config.py index 4b1b13039ffb8..5ac548e532b00 100644 --- a/py/selenium/webdriver/remote/client_config.py +++ b/py/selenium/webdriver/remote/client_config.py @@ -71,7 +71,7 @@ class ClientConfig: """Gets and Sets user agent to be added to the request headers.""" extra_headers = _ClientConfigDescriptor("_extra_headers") """Gets and Sets extra headers to be added to the request.""" - + def __init__( self, remote_server_addr: str, @@ -117,12 +117,10 @@ def __init__( else ca_certs ) - def reset_timeout(self) -> None: """Resets the timeout to the default value of socket.""" self._timeout = socket.getdefaulttimeout() - def get_proxy_url(self) -> Optional[str]: """Returns the proxy URL to use for the connection.""" proxy_type = self.proxy.proxy_type