diff --git a/python/lib/communication/dmod/communication/client.py b/python/lib/communication/dmod/communication/client.py index 89c88580e..7f936b845 100644 --- a/python/lib/communication/dmod/communication/client.py +++ b/python/lib/communication/dmod/communication/client.py @@ -77,9 +77,9 @@ def get_endpoint_protocol_str(cls, use_secure_connection: bool = True) -> str: """ pass - def __init__(self, endpoint_host: str, endpoint_port: Union[int, str], endpoint_path: Optional[str] = None, + def __init__(self, *, endpoint_host: str, endpoint_port: Union[int, str], endpoint_path: Optional[str] = None, cafile: Optional[Path] = None, capath: Optional[Path] = None, use_default_context: bool = False, - *args, **kwargs): + **kwargs): """ Initialize this instance.