From 5e8bf4ecbfd5d62623e2cbf8d4e86a3382e0fe5f Mon Sep 17 00:00:00 2001 From: avercelli Date: Thu, 16 Apr 2026 16:31:17 +0200 Subject: [PATCH] Fix line length style violation (E501) Move comment above the parametrize entry to stay under 127 chars. --- tests/logitech_receiver/test_hidpp10.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/logitech_receiver/test_hidpp10.py b/tests/logitech_receiver/test_hidpp10.py index 02806d1b..368bc896 100644 --- a/tests/logitech_receiver/test_hidpp10.py +++ b/tests/logitech_receiver/test_hidpp10.py @@ -300,7 +300,8 @@ def test_notification_flag_str(flag_bits, expected_names): "flags, expected", [ (None, []), - (hidpp10_constants.NotificationFlag(0x000900), ["software present", "wireless"]), # composite flag, .name is None on Python < 3.11 + # composite flag, .name is None on Python < 3.11 + (hidpp10_constants.NotificationFlag(0x000900), ["software present", "wireless"]), (hidpp10_constants.NotificationFlag(0x100000), ["battery status"]), (hidpp10_constants.NotificationFlag(0x080000), ["mouse extra buttons"]), ],