Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/paho/mqtt/reasoncodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# Contributors:
# Ian Craggs - initial implementation and/or documentation
# *******************************************************************
from __future__ import annotations

import functools
import warnings
Expand All @@ -31,7 +32,7 @@ class ReasonCode:

"""

names = MappingProxyType(
names: MappingProxyType | dict = MappingProxyType(
{
0: {
"Success": [
Expand Down
Loading