Fix linter
This commit is contained in:
parent
2874d49d20
commit
9f373b4be0
@ -1,4 +1,5 @@
|
|||||||
from kb import KMKKeyboard
|
from kb import KMKKeyboard
|
||||||
|
|
||||||
from kmk.extensions.media_keys import MediaKeys
|
from kmk.extensions.media_keys import MediaKeys
|
||||||
from kmk.keys import KC
|
from kmk.keys import KC
|
||||||
from kmk.modules.layers import Layers
|
from kmk.modules.layers import Layers
|
||||||
|
@ -132,8 +132,12 @@ class EncoderHandler(Module):
|
|||||||
gpio_pins = pins[:3]
|
gpio_pins = pins[:3]
|
||||||
new_encoder = Encoder(*gpio_pins)
|
new_encoder = Encoder(*gpio_pins)
|
||||||
# In our case, we need to define keybord and encoder_id for callbacks
|
# In our case, we need to define keybord and encoder_id for callbacks
|
||||||
new_encoder.on_move_do = lambda x, bound_idx = idx: self.on_move_do(keyboard, bound_idx, x)
|
new_encoder.on_move_do = lambda x, bound_idx=idx: self.on_move_do(
|
||||||
new_encoder.on_button_do = lambda x, bound_idx = idx: self.on_button_do(keyboard, bound_idx, x)
|
keyboard, bound_idx, x
|
||||||
|
)
|
||||||
|
new_encoder.on_button_do = lambda x, bound_idx=idx: self.on_button_do(
|
||||||
|
keyboard, bound_idx, x
|
||||||
|
)
|
||||||
self.encoders.append(new_encoder)
|
self.encoders.append(new_encoder)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user