Skip to content

Commit

Permalink
Typing fixes (#566)
Browse files Browse the repository at this point in the history
Co-authored-by: Bret Ambrose <[email protected]>
  • Loading branch information
bretambrose and Bret Ambrose committed May 22, 2024
1 parent 68afb70 commit 23efdd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awscrt/mqtt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -1084,12 +1084,12 @@ class UnsubackPacket:
Args:
reason_string (str): Additional diagnostic information about the result of the UNSUBSCRIBE attempt.
user_properties (Sequence[UserProperty]): List of MQTT5 user properties included with the packet.
reason_codes (Sequence[DisconnectReasonCode]): A list of reason codes indicating the result of unsubscribing from each individual topic filter entry in the associated UNSUBSCRIBE packet.
reason_codes (Sequence[UnsubackReasonCode]): A list of reason codes indicating the result of unsubscribing from each individual topic filter entry in the associated UNSUBSCRIBE packet.
"""
reason_string: str = None
user_properties: 'Sequence[UserProperty]' = None
reason_codes: 'Sequence[DisconnectReasonCode]' = None
reason_codes: 'Sequence[UnsubackReasonCode]' = None


@dataclass
Expand Down

0 comments on commit 23efdd7

Please sign in to comment.