Skip to content

Commit 586d51f

Browse files
fix: add default value for access token in HttpClient init (#448)
Signed-off-by: Lukas Thaler <[email protected]>
1 parent 4cb0f0f commit 586d51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clickhouse_connect/driver/httpclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(self,
5454
username: str,
5555
password: str,
5656
database: str,
57-
access_token: Optional[str],
57+
access_token: Optional[str] = None,
5858
compress: Union[bool, str] = True,
5959
query_limit: int = 0,
6060
query_retries: int = 2,

0 commit comments

Comments
 (0)