File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -512,11 +512,11 @@ def new_default_builder(**kwargs) -> awscrt.mqtt.Connection:
512512 This builder creates an :class:`awscrt.mqtt.Connection`, without any configuration besides the default TLS context options.
513513
514514 This requires setting the connection details manually by passing all the necessary data
515- in :mod:`common arguments<awsiot.mqtt_connection_builder>` to make a connection
515+ in :mod:`common arguments<awsiot.mqtt_connection_builder>` to make a connection.
516516 """
517- _check_required_kwargs (kwargs )
517+ _check_required_kwargs (** kwargs )
518518 tls_ctx_options = awscrt .io .TlsContextOptions ()
519519
520520 return _builder (tls_ctx_options = tls_ctx_options ,
521521 use_websockets = False ,
522- kwargs = kwargs )
522+ ** kwargs )
You can’t perform that action at this time.
0 commit comments