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:
512
512
This builder creates an :class:`awscrt.mqtt.Connection`, without any configuration besides the default TLS context options.
513
513
514
514
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.
516
516
"""
517
- _check_required_kwargs (kwargs )
517
+ _check_required_kwargs (** kwargs )
518
518
tls_ctx_options = awscrt .io .TlsContextOptions ()
519
519
520
520
return _builder (tls_ctx_options = tls_ctx_options ,
521
521
use_websockets = False ,
522
- kwargs = kwargs )
522
+ ** kwargs )
You can’t perform that action at this time.
0 commit comments