From cbf7b9befe2d265cc623106e22178eb20a896b63 Mon Sep 17 00:00:00 2001 From: shukari <7529291+shukari@users.noreply.github.com> Date: Sat, 9 Aug 2025 16:58:48 +0200 Subject: [PATCH] pylint: test_mesh_interface.py line too long --- meshtastic/tests/test_mesh_interface.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meshtastic/tests/test_mesh_interface.py b/meshtastic/tests/test_mesh_interface.py index cfe2b9d..8d53628 100644 --- a/meshtastic/tests/test_mesh_interface.py +++ b/meshtastic/tests/test_mesh_interface.py @@ -682,7 +682,11 @@ def test_exit_with_exception(caplog): caplog.text, re.MULTILINE, ) - assert re.search(r"Traceback:\n.*in test_exit_with_exception\n {4}raise ValueError\(\"Something went wrong\"\)", caplog.text, re.MULTILINE) + assert re.search( + r"Traceback:\n.*in test_exit_with_exception\n {4}raise ValueError\(\"Something went wrong\"\)", + caplog.text, + re.MULTILINE + ) @pytest.mark.unit