@@ -46,27 +46,30 @@ def __set__(self, obj, value) -> None:
46
46
47
47
class ClientConfig :
48
48
remote_server_addr = _ClientConfigDescriptor ("_remote_server_addr" )
49
- """Gets and Sets Remote Server"""
49
+ """Gets and Sets Remote Server. """
50
50
keep_alive = _ClientConfigDescriptor ("_keep_alive" )
51
- """Gets and Sets Keep Alive value"""
51
+ """Gets and Sets Keep Alive value. """
52
52
proxy = _ClientConfigDescriptor ("_proxy" )
53
53
"""Gets and Sets the proxy used for communicating to the driver/server."""
54
54
ignore_certificates = _ClientConfigDescriptor ("_ignore_certificates" )
55
55
"""Gets and Sets the ignore certificate check value."""
56
56
init_args_for_pool_manager = _ClientConfigDescriptor ("_init_args_for_pool_manager" )
57
57
"""Gets and Sets the ignore certificate check."""
58
58
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."""
60
61
ca_certs = _ClientConfigDescriptor ("_ca_certs" )
61
62
"""Gets and Sets the path to bundle of CA certificates."""
62
63
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."""
64
66
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."""
66
69
auth_type = _ClientConfigDescriptor ("_auth_type" )
67
70
"""Gets and Sets the type of authentication to the remote server."""
68
71
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. """
70
73
user_agent = _ClientConfigDescriptor ("_user_agent" )
71
74
"""Gets and Sets user agent to be added to the request headers."""
72
75
extra_headers = _ClientConfigDescriptor ("_extra_headers" )
0 commit comments