Fix line length style violation (E501)
Move comment above the parametrize entry to stay under 127 chars.
This commit is contained in:
parent
05dc7bfdcb
commit
5e8bf4ecbf
|
|
@ -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"]),
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue