Skip to content

Commit fddcc97

Browse files
MHHukiewitzhoh
authored andcommitted
Fix issue with optional argument in the constructor of AuthenticatedHTTP client.
1 parent ef520a0 commit fddcc97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aleph/sdk/client/authenticated_http.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class AuthenticatedAlephHttpClient(AlephHttpClient, AuthenticatedAlephClient):
6868
def __init__(
6969
self,
7070
account: Account,
71-
api_server: Optional[str],
71+
api_server: Optional[str] = None,
7272
api_unix_socket: Optional[str] = None,
7373
allow_unix_sockets: bool = True,
7474
timeout: Optional[aiohttp.ClientTimeout] = None,

0 commit comments

Comments
 (0)