Skip to content

Commit 5590d6e

Browse files
authored
Typing fix from PR (#406)
1 parent 3ad5d80 commit 5590d6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

awsiot/mqtt5_client_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ def new_default_builder(**kwargs) -> awscrt.mqtt5.Client:
700700
This requires setting the client details manually by passing all the necessary data
701701
in :mod:`common arguments<awsiot.mqtt5_client_builder>` to make a connection
702702
"""
703-
_check_required_kwargs(kwargs)
703+
_check_required_kwargs(**kwargs)
704704
tls_ctx_options = awscrt.io.TlsContextOptions()
705705
return _builder(tls_ctx_options=tls_ctx_options,
706706
use_websockets=False,

0 commit comments

Comments
 (0)