Skip to content

Commit 821d3e9

Browse files
committed
remvoe unneeded paren
1 parent 542f99b commit 821d3e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meshtastic/slog/slog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def _onLogMessage(self, line: str) -> None:
131131
args = m.group(2)
132132
args += " " # append a space so that if the last arg is an empty str it will still be accepted as a match
133133
logging.debug(f"SLog {src}, reason: {args}")
134-
if(src != "PM"):
134+
if src != "PM":
135135
logging.warning(f"Not yet handling structured log {src} (FIXME)")
136136
else:
137137
d = log_defs.get(src)

0 commit comments

Comments
 (0)