Skip to content

Commit 4ae3329

Browse files
committed
Standardize TransportOptions docstrings for cross-SDK consistency
1 parent 2058538 commit 4ae3329

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

zitadel_client/transport_options.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
class TransportOptions:
88
"""Immutable transport options for configuring HTTP connections.
99
10-
:param default_headers: Additional HTTP headers sent to the origin server with every request.
10+
:param default_headers: Default HTTP headers sent to the origin server with every request.
1111
:param ca_cert_path: Path to a custom CA certificate file for TLS verification.
12-
:param insecure: If True, disables TLS certificate verification.
13-
:param proxy_url: HTTP/HTTPS proxy URL to route requests through.
12+
:param insecure: Whether to disable TLS certificate verification.
13+
:param proxy_url: Proxy URL for HTTP connections.
1414
"""
1515

1616
default_headers: Mapping[str, str] = field(default_factory=dict)

0 commit comments

Comments
 (0)