From 0b086d10f81c8922d52ca670463b8d274ab6c26b Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Fri, 15 Nov 2024 11:50:35 -0700 Subject: [PATCH] appease pylint --- meshtastic/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/util.py b/meshtastic/util.py index a0dc035..a405879 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) + json = MessageToJson(message, including_default_value_fields=True) # pylint: disable=E1123 return stripnl(json) if not multiline else json