Skip to content

Commit 815b9eb

Browse files
authored
Merge 22def34 into 3a2ad6b
2 parents 3a2ad6b + 22def34 commit 815b9eb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/brailleDisplayDrivers/eurobraille/gestures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A part of NonVisual Desktop Access (NVDA)
22
# This file is covered by the GNU General Public License.
33
# See the file COPYING for more details.
4-
# Copyright (C) 2017-2023 NV Access Limited, Babbage B.V., Eurobraille
4+
# Copyright (C) 2017-2023 NV Access Limited, Babbage B.V., Eurobraille, Cyrille Bougot
55

66
import braille
77
import brailleInput
@@ -164,7 +164,7 @@ def __init__(self, display):
164164
# 0x1000 is backspace, 0x2000 is space
165165
self.dots = groupKeysDown & 0xff
166166
self.space = groupKeysDown & 0x200
167-
names.extend(f"dot{((i + 1) for i in range(8) if (groupKeysDown &0xff) & (1 << i))}")
167+
names.extend(f"dot{i + 1}" for i in range(8) if (groupKeysDown & 0xff) & (1 << i))
168168
if groupKeysDown & 0x200:
169169
names.append("space")
170170
if groupKeysDown & 0x100:

0 commit comments

Comments
 (0)