We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 426795f commit 0b086d1Copy full SHA for 0b086d1
meshtastic/util.py
@@ -678,5 +678,5 @@ def message_to_json(message: Message, multiline: bool=False) -> str:
678
try:
679
json = MessageToJson(message, always_print_fields_with_no_presence=True)
680
except TypeError:
681
- json = MessageToJson(message, including_default_value_fields=True)
+ json = MessageToJson(message, including_default_value_fields=True) # pylint: disable=E1123
682
return stripnl(json) if not multiline else json
0 commit comments