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 0b086d1 commit 4c7ac60Copy full SHA for 4c7ac60
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) # pylint: disable=E1123
+ json = MessageToJson(message, including_default_value_fields=True) # type: ignore[call-arg] # pylint: disable=E1123
682
return stripnl(json) if not multiline else json
0 commit comments