@@ -46,27 +46,30 @@ def __set__(self, obj, value) -> None:
4646
4747class ClientConfig :
4848 remote_server_addr = _ClientConfigDescriptor ("_remote_server_addr" )
49- """Gets and Sets Remote Server"""
49+ """Gets and Sets Remote Server. """
5050 keep_alive = _ClientConfigDescriptor ("_keep_alive" )
51- """Gets and Sets Keep Alive value"""
51+ """Gets and Sets Keep Alive value. """
5252 proxy = _ClientConfigDescriptor ("_proxy" )
5353 """Gets and Sets the proxy used for communicating to the driver/server."""
5454 ignore_certificates = _ClientConfigDescriptor ("_ignore_certificates" )
5555 """Gets and Sets the ignore certificate check value."""
5656 init_args_for_pool_manager = _ClientConfigDescriptor ("_init_args_for_pool_manager" )
5757 """Gets and Sets the ignore certificate check."""
5858 timeout = _ClientConfigDescriptor ("_timeout" )
59- """Gets and Sets the timeout (in seconds) used for communicating to the driver/server"""
59+ """Gets and Sets the timeout (in seconds) used for communicating to the
60+ driver/server."""
6061 ca_certs = _ClientConfigDescriptor ("_ca_certs" )
6162 """Gets and Sets the path to bundle of CA certificates."""
6263 username = _ClientConfigDescriptor ("_username" )
63- """Gets and Sets the username used for basic authentication to the remote"""
64+ """Gets and Sets the username used for basic authentication to the
65+ remote."""
6466 password = _ClientConfigDescriptor ("_password" )
65- """Gets and Sets the password used for basic authentication to the remote"""
67+ """Gets and Sets the password used for basic authentication to the
68+ remote."""
6669 auth_type = _ClientConfigDescriptor ("_auth_type" )
6770 """Gets and Sets the type of authentication to the remote server."""
6871 token = _ClientConfigDescriptor ("_token" )
69- """Gets and Sets the token used for authentication to the remote server"""
72+ """Gets and Sets the token used for authentication to the remote server. """
7073 user_agent = _ClientConfigDescriptor ("_user_agent" )
7174 """Gets and Sets user agent to be added to the request headers."""
7275 extra_headers = _ClientConfigDescriptor ("_extra_headers" )
0 commit comments