From 1214d5010bcfa8986b6e2797ed5e1a8fc7f20b20 Mon Sep 17 00:00:00 2001 From: Travis-L-R <> Date: Thu, 13 Nov 2025 07:38:25 +1030 Subject: [PATCH] Linting adjustment for change to StreamInterface non-abstract use check --- meshtastic/stream_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/stream_interface.py b/meshtastic/stream_interface.py index fc7e9bc..a13404d 100644 --- a/meshtastic/stream_interface.py +++ b/meshtastic/stream_interface.py @@ -42,7 +42,7 @@ class StreamInterface(MeshInterface): RuntimeError: Raised if StreamInterface is instantiated when noProto is false. """ - if not noProto and type(self) == StreamInterface: + if not noProto and type(self) == StreamInterface: # pylint: disable=C0123 raise RuntimeError( "StreamInterface is now abstract (to update existing code create SerialInterface instead)" )