Skip to content

Commit

Permalink
fixed docformatter linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepsuryaprasad committed Dec 27, 2024
1 parent 12c91b1 commit 10d3fd1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions py/selenium/webdriver/remote/client_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,27 +46,30 @@ def __set__(self, obj, value) -> None:

class ClientConfig:
remote_server_addr = _ClientConfigDescriptor("_remote_server_addr")
"""Gets and Sets Remote Server"""
"""Gets and Sets Remote Server."""
keep_alive = _ClientConfigDescriptor("_keep_alive")
"""Gets and Sets Keep Alive value"""
"""Gets and Sets Keep Alive value."""
proxy = _ClientConfigDescriptor("_proxy")
"""Gets and Sets the proxy used for communicating to the driver/server."""
ignore_certificates = _ClientConfigDescriptor("_ignore_certificates")
"""Gets and Sets the ignore certificate check value."""
init_args_for_pool_manager = _ClientConfigDescriptor("_init_args_for_pool_manager")
"""Gets and Sets the ignore certificate check."""
timeout = _ClientConfigDescriptor("_timeout")
"""Gets and Sets the timeout (in seconds) used for communicating to the driver/server"""
"""Gets and Sets the timeout (in seconds) used for communicating to the
driver/server."""
ca_certs = _ClientConfigDescriptor("_ca_certs")
"""Gets and Sets the path to bundle of CA certificates."""
username = _ClientConfigDescriptor("_username")
"""Gets and Sets the username used for basic authentication to the remote"""
"""Gets and Sets the username used for basic authentication to the
remote."""
password = _ClientConfigDescriptor("_password")
"""Gets and Sets the password used for basic authentication to the remote"""
"""Gets and Sets the password used for basic authentication to the
remote."""
auth_type = _ClientConfigDescriptor("_auth_type")
"""Gets and Sets the type of authentication to the remote server."""
token = _ClientConfigDescriptor("_token")
"""Gets and Sets the token used for authentication to the remote server"""
"""Gets and Sets the token used for authentication to the remote server."""
user_agent = _ClientConfigDescriptor("_user_agent")
"""Gets and Sets user agent to be added to the request headers."""
extra_headers = _ClientConfigDescriptor("_extra_headers")
Expand Down

0 comments on commit 10d3fd1

Please sign in to comment.