From 821d3e95f15e378e95619f4f965cdb5886927b21 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Sat, 29 Jun 2024 08:40:16 -0700 Subject: [PATCH] remvoe unneeded paren --- meshtastic/slog/slog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/slog/slog.py b/meshtastic/slog/slog.py index e7c8efc..9c6ae6d 100644 --- a/meshtastic/slog/slog.py +++ b/meshtastic/slog/slog.py @@ -131,7 +131,7 @@ class StructuredLogger: args = m.group(2) args += " " # append a space so that if the last arg is an empty str it will still be accepted as a match logging.debug(f"SLog {src}, reason: {args}") - if(src != "PM"): + if src != "PM": logging.warning(f"Not yet handling structured log {src} (FIXME)") else: d = log_defs.get(src)