From 4c7ac60be6e49cfefa4a4fcf79c99ee9cd940efe Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Fri, 15 Nov 2024 11:55:25 -0700 Subject: [PATCH] appease mypy too --- meshtastic/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/util.py b/meshtastic/util.py index a405879..f36655e 100644 --- a/meshtastic/util.py +++ b/meshtastic/util.py @@ -678,5 +678,5 @@ def message_to_json(message: Message, multiline: bool=False) -> str: try: json = MessageToJson(message, always_print_fields_with_no_presence=True) except TypeError: - 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 return stripnl(json) if not multiline else json