Skip to content

Commit

Permalink
Fix: Optional argument requires default value
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Jul 10, 2023
1 parent ee191ea commit 5eeb0ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aleph/sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ class AlephClient:

def __init__(
self,
api_server: Optional[str],
api_server: Optional[str] = None,
api_unix_socket: Optional[str] = None,
allow_unix_sockets: bool = True,
timeout: Optional[aiohttp.ClientTimeout] = None,
Expand Down

0 comments on commit 5eeb0ca

Please sign in to comment.