File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 55
55
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_VL53L0X.git"
56
56
57
57
# Configuration constants:
58
- # pylint: disable=bad-whitespace
59
58
_SYSRANGE_START = const (0x00 )
60
59
_SYSTEM_THRESH_HIGH = const (0x0C )
61
60
_SYSTEM_THRESH_LOW = const (0x0E )
116
115
_ALGO_PHASECAL_CONFIG_TIMEOUT = const (0x30 )
117
116
_VCSEL_PERIOD_PRE_RANGE = const (0 )
118
117
_VCSEL_PERIOD_FINAL_RANGE = const (1 )
119
- # pylint: enable=bad-whitespace
120
118
121
119
122
120
def _decode_timeout (val ):
@@ -409,7 +407,6 @@ def _get_vcsel_pulse_period(self, vcsel_period_type):
409
407
def _get_sequence_step_enables (self ):
410
408
# based on VL53L0X_GetSequenceStepEnables() from ST API
411
409
sequence_config = self ._read_u8 (_SYSTEM_SEQUENCE_CONFIG )
412
- # pylint: disable=bad-whitespace
413
410
tcc = (sequence_config >> 4 ) & 0x1 > 0
414
411
dss = (sequence_config >> 3 ) & 0x1 > 0
415
412
msrc = (sequence_config >> 2 ) & 0x1 > 0
You can’t perform that action at this time.
0 commit comments