From fc19c30b5ba078a029a08a84a93b42027b08ec44 Mon Sep 17 00:00:00 2001 From: Sergi Miralles <13437098+sergimn@users.noreply.github.com> Date: Sun, 29 Sep 2024 20:00:13 +0200 Subject: [PATCH] Fixes typo in MQTT Client docstring --- src/paho/mqtt/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/paho/mqtt/client.py b/src/paho/mqtt/client.py index 4ccc8696..92abe82d 100644 --- a/src/paho/mqtt/client.py +++ b/src/paho/mqtt/client.py @@ -1229,7 +1229,7 @@ def tls_set( is mandatory. :param str certfile: PEM encoded client certificate filename. Used with keyfile for client TLS based authentication. Support for this feature is - broker dependent. Note that if the files in encrypted and needs a password to + broker dependent. Note that if the file is encrypted and needs a password to decrypt it, then this can be passed using the keyfile_password argument - you should take precautions to ensure that your password is not hard coded into your program by loading the password from a file @@ -1237,7 +1237,7 @@ def tls_set( be requested to be typed in at a terminal window. :param str keyfile: PEM encoded client private keys filename. Used with certfile for client TLS based authentication. Support for this feature is - broker dependent. Note that if the files in encrypted and needs a password to + broker dependent. Note that if the file is encrypted and needs a password to decrypt it, then this can be passed using the keyfile_password argument - you should take precautions to ensure that your password is not hard coded into your program by loading the password from a file