From ea6a95252c92136060c423c897d4b4c46e49a703 Mon Sep 17 00:00:00 2001 From: Jonathan Plasse Date: Sun, 24 Mar 2024 09:09:57 +0100 Subject: [PATCH] Fix type annotations --- src/paho/mqtt/client.py | 6 +++--- src/paho/mqtt/reasoncodes.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/paho/mqtt/client.py b/src/paho/mqtt/client.py index f5897328..fed1be36 100644 --- a/src/paho/mqtt/client.py +++ b/src/paho/mqtt/client.py @@ -288,7 +288,7 @@ class WebsocketConnectionError(ConnectionError): pass -def error_string(mqtt_errno: MQTTErrorCode) -> str: +def error_string(mqtt_errno: MQTTErrorCode | int) -> str: """Return the error string associated with an mqtt error number.""" if mqtt_errno == MQTT_ERR_SUCCESS: return "No error." @@ -729,7 +729,7 @@ def on_connect(client, userdata, flags, reason_code, properties): def __init__( self, callback_api_version: CallbackAPIVersion, - client_id: str = "", + client_id: str | None = "", clean_session: bool | None = None, userdata: Any = None, protocol: int = MQTTv311, @@ -2032,7 +2032,7 @@ def subscribe( return self._send_subscribe(False, topic_qos_list, properties) def unsubscribe( - self, topic: str, properties: Properties | None = None + self, topic: str | list[str], properties: Properties | None = None ) -> tuple[MQTTErrorCode, int | None]: """Unsubscribe the client from one or more topics. diff --git a/src/paho/mqtt/reasoncodes.py b/src/paho/mqtt/reasoncodes.py index 6b30cb83..243ac96f 100644 --- a/src/paho/mqtt/reasoncodes.py +++ b/src/paho/mqtt/reasoncodes.py @@ -30,7 +30,7 @@ class ReasonCode: """ - def __init__(self, packetType, aName="Success", identifier=-1): + def __init__(self, packetType: int, aName: str ="Success", identifier: int =-1): """ packetType: the type of the packet, such as PacketTypes.CONNECT that this reason code will be used with. Some reason codes have different