Skip to content

Commit 4c7ac60

Browse files
committed
appease mypy too
1 parent 0b086d1 commit 4c7ac60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshtastic/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,5 +678,5 @@ def message_to_json(message: Message, multiline: bool=False) -> str:
678678
try:
679679
json = MessageToJson(message, always_print_fields_with_no_presence=True)
680680
except TypeError:
681-
json = MessageToJson(message, including_default_value_fields=True) # pylint: disable=E1123
681+
json = MessageToJson(message, including_default_value_fields=True) # type: ignore[call-arg] # pylint: disable=E1123
682682
return stripnl(json) if not multiline else json

0 commit comments

Comments
 (0)