fix some linting issues
This commit is contained in:
parent
1c82f7d387
commit
be2bbce21a
@ -1,7 +1,7 @@
|
|||||||
'''Enables splitting keyboards wirelessly or wired'''
|
'''Enables splitting keyboards wirelessly or wired'''
|
||||||
import busio
|
import busio
|
||||||
from micropython import const
|
from micropython import const
|
||||||
from supervisor import ticks_ms, runtime
|
from supervisor import runtime, ticks_ms
|
||||||
|
|
||||||
from storage import getmount
|
from storage import getmount
|
||||||
|
|
||||||
@ -90,7 +90,8 @@ class Split(Module):
|
|||||||
self._is_target = bool(self.split_target_left)
|
self._is_target = bool(self.split_target_left)
|
||||||
elif self.split_side == SplitSide.RIGHT:
|
elif self.split_side == SplitSide.RIGHT:
|
||||||
self._is_target = not bool(self.split_target_left)
|
self._is_target = not bool(self.split_target_left)
|
||||||
else: # Detect split side from name
|
else:
|
||||||
|
# Detect split side from name
|
||||||
if self.split_type == SplitType.UART or self.split_type == SplitType.ONEWIRE:
|
if self.split_type == SplitType.UART or self.split_type == SplitType.ONEWIRE:
|
||||||
self._is_target = runtime.usb_connected
|
self._is_target = runtime.usb_connected
|
||||||
elif self.split_type == SplitType.BLE:
|
elif self.split_type == SplitType.BLE:
|
||||||
@ -283,7 +284,7 @@ class Split(Module):
|
|||||||
# matrix location of the receiever
|
# matrix location of the receiever
|
||||||
|
|
||||||
if self.split_side == SplitSide.RIGHT:
|
if self.split_side == SplitSide.RIGHT:
|
||||||
#if we're on the right, we by definition are sending to the left, so we need to offset.
|
# if we're on the right, we by definition are sending to the left, so we need to offset.
|
||||||
update[1] += self.split_offset
|
update[1] += self.split_offset
|
||||||
|
|
||||||
if self._uart is not None:
|
if self._uart is not None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user