Fix line length style violation (E501)

Move comment above the parametrize entry to stay under 127 chars.
This commit is contained in:
avercelli 2026-04-16 16:31:17 +02:00 committed by Alessio85
parent 05dc7bfdcb
commit 5e8bf4ecbf
1 changed files with 2 additions and 1 deletions

View File

@ -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"]),
],