From 99f3707e77b02a47f1458653d9d1e0ad6330337e Mon Sep 17 00:00:00 2001 From: Anshuman Laskar Date: Thu, 24 Oct 2024 23:04:05 +0530 Subject: [PATCH] updated docstring --- healthchain/clients/ehrclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthchain/clients/ehrclient.py b/healthchain/clients/ehrclient.py index f330c97..1bd12c4 100644 --- a/healthchain/clients/ehrclient.py +++ b/healthchain/clients/ehrclient.py @@ -113,7 +113,7 @@ def __init__( func (Callable[..., Any]): A function to generate data for requests. workflow ([Workflow]): The workflow context to apply to the data generator. strategy (BaseStrategy): The strategy object to construct requests based on the generated data. - timeout(float and default=10.0) : The maximum time in seconds to wait for a response from the server. + timeout(Optional[float], default=10.0) : The maximum time in seconds to wait for a response from the server. This parameter determines how long the client will wait before considering a request timed out. A higher timeout value allows for longer-running operations, while a lower value prioritizes faster responses. """